@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600&family=Archivo+Black&display=swap");

:root {
  --color-white-strong: #ffffff;
  --color-white-soft: #f4f4f4;
  --color-white-muted: #e6e6e6;

  --color-orange-main: #ff6a00;
  --color-orange-soft: #ff8f3d;
  --color-orange-deep: #cc5200;

  --color-gray-900: #111111;
  --color-gray-800: #1c1c1c;
  --color-gray-700: #2a2a2a;
  --color-gray-500: #6f6f6f;
  --color-gray-300: #bdbdbd;

  --gradient-accent: linear-gradient(
    135deg,
    var(--color-orange-main),
    var(--color-orange-soft)
  );
  --gradient-soft: linear-gradient(
    180deg,
    var(--color-white-strong),
    var(--color-white-soft)
  );
  --gradient-analytic: linear-gradient(
    90deg,
    var(--color-gray-800),
    var(--color-gray-900)
  );

  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 24px 64px rgba(0, 0, 0, 0.18);

  --blur-light: blur(6px);
  --blur-medium: blur(12px);

  --font-family-base: "Archivo", sans-serif;
  --font-family-heading: "Archivo Black", sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.75rem;
  --font-size-xxl: 2.5rem;

  --line-height-tight: 1.2;
  --line-height-base: 1.6;
  --line-height-loose: 1.8;

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-md);
  line-height: var(--line-height-base);
  color: var(--color-gray-800);
  background: var(--gradient-soft);
  min-height: 100vh;
  transition:
    background var(--transition-base),
    color var(--transition-base);
}

ul {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  line-height: var(--line-height-tight);
  color: var(--color-gray-900);
}

a {
  color: var(--color-orange-main);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-orange-deep);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.header {
  position: relative;
  width: 100%;
  background: var(--color-white-strong);
  box-shadow: var(--shadow-soft);
  z-index: 50;
}

.header__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 3rem;
}

.header__nav {
  display: flex;
}

.header__menu {
  display: flex;
  gap: 3rem;
}

.header__link {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-gray-700);
  position: relative;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--color-orange-main);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.header__link:hover::after {
  opacity: 1;
}

.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--color-white-soft);
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.header__burger.is-active {
  background: var(--color-orange-soft);
  box-shadow: var(--shadow-medium);
}

@media (max-width: 1024px) {
  .header__grid {
    justify-content: flex-end;
    padding: 0.5rem 1.5rem;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white-strong);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 0 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header__nav.is-active {
    display: flex;
  }

  .header__menu {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    min-height: 100vh;
    padding-block: 40px;
    align-items: center;
    justify-content: center;
    max-width: 420px;
    text-align: center;
  }

  .header__link {
    font-size: var(--font-size-md);
  }

  .header__burger {
    display: block;
    z-index: 100;
  }
}

.cookie {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  max-width: 420px;
  background: var(--color-white-strong);
  box-shadow: var(--shadow-medium);
  z-index: 200;
}

.cookie__inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cookie__text {
  font-size: var(--font-size-sm);
  color: var(--color-gray-700);
  line-height: var(--line-height-base);
}

.cookie__actions {
  display: flex;
  gap: 1rem;
}

.cookie__button {
  padding: 0.6rem 1.25rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-white-soft);
  color: var(--color-gray-800);
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.cookie__button:hover {
  background: var(--color-orange-soft);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 480px) {
  .cookie {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }

  .cookie__actions {
    flex-direction: column;
  }
}

.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-300);
  padding: 4rem 3rem 3rem;
  margin-top: 3rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  color: var(--color-white-strong);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer__description {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-loose);
  color: var(--color-gray-500);
  max-width: 420px;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__link {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gray-300);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-orange-soft);
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  color: var(--color-gray-500);
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section__inner {
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.service-section {
  padding-block: 3rem;
  font-size: 18px;
}

.analysis-fragment {
  background: var(--color-white-strong);
}

.analysis-fragment__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.analysis-fragment__label {
  font-size: var(--font-size-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange-main);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.analysis-fragment__headline {
  font-size: var(--font-size-xxl);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.analysis-fragment__note {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  max-width: 280px;
}

.analysis-fragment__center {
  padding-top: 4rem;
}

.analysis-fragment__text {
  font-size: var(--font-size-md);
  color: var(--color-gray-800);
  margin-bottom: 1.75rem;
}

.analysis-fragment__disclaimer {
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  margin-top: 2.5rem;
  max-width: 420px;
}

.analysis-fragment__visual {
  position: relative;
  padding-top: 6rem;
}

.analysis-fragment__image {
  width: 100%;
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 1.2s ease;
}

@media (max-width: 1024px) {
  .analysis-fragment__image {
    max-height: 280px;
    object-fit: cover;
  }
}

.analysis-fragment__visual:hover .analysis-fragment__image {
  transform: translateY(-12px);
}

.analysis-fragment__axis {
  position: absolute;
  bottom: -1.5rem;
  right: 0;
  font-size: var(--font-size-xs);
  letter-spacing: 0.3em;
  color: var(--color-gray-400);
}

@media (max-width: 1024px) {
  .analysis-fragment__inner {
    grid-template-columns: 1fr;
  }

  .analysis-fragment__center,
  .analysis-fragment__visual {
    padding-top: 0;
  }

  .analysis-fragment__headline {
    font-size: var(--font-size-xl);
  }
}

.method-section__wrapper {
  background: var(--color-white-soft);
  padding-block: 3rem;
}

.method-section__header {
  max-width: 520px;
  margin-bottom: 3rem;
}

.method-section__title {
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
}

.method-section__subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

.method-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.method-section__points {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.method-section__point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
}

.method-section__index {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-sm);
  color: var(--color-orange-main);
  letter-spacing: 0.1em;
}

.method-section__point p {
  font-size: var(--font-size-md);
  color: var(--color-gray-800);
}

.method-section__visual {
  width: 100%;
}

.method-section__image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.method-section__disclaimer {
  margin-top: 1rem;
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  max-width: 520px;
}

@media (max-width: 1024px) {
  .method-section__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .method-section__image {
    max-height: 220px;
  }
}

@media (max-width: 480px) {
  .method-section__image {
    max-height: 180px;
  }
}

.reflection-section {
  background: var(--color-white-strong);
}

.reflection-section__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.reflection-section__visual {
  position: relative;
}

.reflection-section__image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.reflection-section__caption {
  display: block;
  margin-top: 0.75rem;
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  letter-spacing: 0.1em;
}

.reflection-section__content {
}

.reflection-section__title {
  font-size: var(--font-size-xl);
  margin-bottom: 2rem;
}

.reflection-section__paragraph {
  font-size: var(--font-size-md);
  color: var(--color-gray-800);
  margin-bottom: 1.75rem;
  line-height: var(--line-height-loose);
}

.reflection-section__quote {
  border-left: 2px solid var(--color-orange-main);
  padding-left: 1.5rem;
  margin: 3rem 0;
}

.reflection-section__quote p {
  font-size: var(--font-size-lg);
  color: var(--color-gray-700);
  line-height: var(--line-height-base);
}

.reflection-section__disclaimer {
  margin-top: 3rem;
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  max-width: 520px;
}

@media (max-width: 768px) {
  .reflection-section__image {
    max-height: 260px;
  }

  .reflection-section__title {
    font-size: var(--font-size-lg);
  }
}

.variable-section {
  background: linear-gradient(
    180deg,
    var(--color-white-strong) 0%,
    var(--color-white-soft) 100%
  );
  position: relative;
  overflow: visible;
}

.variable-section__inner {
  display: grid;
  grid-template-columns: 120px 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
}

/* scale / vertical timeline */
.variable-section__scale {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1rem;
  color: var(--color-gray-500);
  font-size: var(--font-size-xs);
}

.scale__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  transform: translateY(6%);
}

.scale__chip {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  font-family: var(--font-family-heading);
  font-size: 0.75rem;
  color: var(--color-gray-900);
  background: var(--color-white-soft);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  letter-spacing: 0.08em;
}

.scale__mark {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 2rem;
  color: var(--color-gray-400);
  font-size: var(--font-size-xs);
  letter-spacing: 0.22em;
}

/* visual block */
.variable-section__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.visual__frame {
  position: relative;
  width: 100%;
  max-width: 720px;
  overflow: visible;
}

.visual__image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-medium);
  border-radius: 6px;
  transform-origin: center;
  transition: transform 0.6s ease;
}

.visual__frame:hover .visual__image {
  transform: scale(1.02);
}

.visual__stamp {
  position: absolute;
  top: 12px;
  left: -28px;
  transform: rotate(-18deg);
  background: rgba(255, 106, 0, 0.06);
  color: var(--color-orange-deep);
  font-family: var(--font-family-heading);
  padding: 0.6rem 1rem;
  letter-spacing: 0.18em;
  font-size: var(--font-size-xs);
  border: 1px solid rgba(255, 106, 0, 0.12);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

/* content column */
.variable-section__content {
  padding: 0.25rem 0;
}

.variable-section__title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.variable-section__lead {
  font-size: var(--font-size-md);
  color: var(--color-gray-700);
  margin-bottom: 1.25rem;
}

.variable-section__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
}

.meta__item strong {
  font-family: var(--font-family-heading);
  color: var(--color-gray-800);
  font-size: var(--font-size-sm);
}

/* long text with fold */
.variable-section__textflow p {
  margin-bottom: 1rem;
  color: var(--color-gray-800);
  line-height: var(--line-height-loose);
}

.variable-section__fold {
  display: none;
  max-height: none;
}

.variable-section__more {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 0.9rem;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--color-white-soft);
  border-radius: 6px;
  cursor: pointer;
}

/* chips */
.variable-section__chips {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chip {
  padding: 0.5rem 0.85rem;
  font-size: var(--font-size-xs);
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--color-gray-300);
  cursor: pointer;
}

.chip--active {
  background: var(--color-orange-main);
  color: var(--color-white-strong);
  border-color: var(--color-orange-main);
}

/* dotted grid decor behind content */
.variable-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px
  );
  background-size: 12px 12px;
  transform: translateY(20%);
  pointer-events: none;
  opacity: 0.6;
}

/* responsive rules */
@media (max-width: 1024px) {
  .variable-section__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .variable-section__scale {
    display: none;
  }

  .visual__image {
    max-height: 260px;
  }

  .visual__stamp {
    left: 8px;
    top: 8px;
    transform: rotate(-14deg);
  }
}

@media (max-width: 480px) {
  .visual__image {
    max-height: 180px;
  }

  .variable-section__more {
    width: 100%;
    text-align: center;
  }
}

.horoscope-section {
  background: var(--color-white-strong);
}

.horoscope-section__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.horoscope-section__visual {
  position: relative;
}

.horoscope-section__image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.horoscope-section__visual-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  color: var(--color-gray-500);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.6rem;
}

.horoscope-section__intro {
  max-width: 520px;
}

.horoscope-section__title {
  font-size: var(--font-size-xxl);
  margin-bottom: 1.5rem;
}

.horoscope-section__lead {
  font-size: var(--font-size-lg);
  color: var(--color-gray-700);
  line-height: var(--line-height-loose);
}

.horoscope-section__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.horoscope-section__column p {
  font-size: var(--font-size-md);
  color: var(--color-gray-800);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-loose);
}

.horoscope-section__marker {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-white-muted);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.marker__label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-orange-main);
}

.marker__value {
  color: var(--color-gray-700);
}

.horoscope-section__disclaimer {
  margin-top: 4rem;
  max-width: 520px;
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
}

@media (max-width: 1024px) {
  .horoscope-section__columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .horoscope-section__image {
    max-height: 240px;
  }

  .horoscope-section__title {
    font-size: var(--font-size-xl);
  }
}

@media (max-width: 480px) {
  .horoscope-section__image {
    max-height: 180px;
  }
}
.period-analysis {
  background: var(--color-white-soft);
}

.period-analysis__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.period-analysis__header {
  max-width: 560px;
}

.period-analysis__title {
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
}

.period-analysis__intro {
  font-size: var(--font-size-md);
  color: var(--color-gray-700);
}

.period-analysis__controls {
  display: flex;
  gap: 1rem;
}

.period-analysis__button {
  padding: 0.6rem 1.25rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-white-strong);
  box-shadow: var(--shadow-soft);
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.period-analysis__button.is-active {
  background: var(--color-orange-soft);
  box-shadow: var(--shadow-medium);
}

.period-analysis__visual {
  position: relative;
}

.period-analysis__image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.period-analysis__marker {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-orange-main);
  left: 20%;
  transition: left 0.4s ease;
}

.period-analysis__output {
  max-width: 720px;
  font-size: var(--font-size-md);
  line-height: var(--line-height-loose);
  color: var(--color-gray-800);
}

.period-analysis__disclaimer {
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  max-width: 520px;
}

@media (max-width: 768px) {
  .period-analysis__image {
    max-height: 140px;
  }
}

.insight-cards {
  background: var(--color-white-soft);
}

.insight-cards__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.insight-cards__header {
  max-width: 520px;
}

.insight-cards__title {
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
}

.insight-cards__subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

.insight-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.insight-card {
  background: var(--color-white-strong);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.insight-card__icon {
  font-size: 2rem;
}

.insight-card__title {
  font-size: var(--font-size-md);
  font-family: var(--font-family-heading);
}

.insight-card__text {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-loose);
  color: var(--color-gray-700);
}

.insight-cards__disclaimer {
  max-width: 520px;
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
}

@media (max-width: 1024px) {
  .insight-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .insight-cards__grid {
    grid-template-columns: 1fr;
  }

  .insight-card {
    padding: 1.5rem;
  }
}

.vector-model__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.vector-model__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-white-muted);
}

.vector-model__visual {
  position: relative;
}

.vector-model__visual img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.vector-model__axis {
  position: absolute;
  font-size: var(--font-size-xs);
  letter-spacing: 0.2em;
  color: var(--color-gray-500);
}

.vector-model__axis--x {
  bottom: -1.5rem;
  right: 0;
}

.vector-model__axis--y {
  top: 0;
  left: -2rem;
  transform: rotate(-90deg);
}

.vector-model__title {
  font-size: var(--font-size-xxl);
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .vector-model__inner {
    grid-template-columns: 1fr;
  }

  .vector-model__inner::before {
    display: none;
  }
}

.vector-ingredients {
  background: var(--color-white-soft);
}

.vector-ingredients__header {
  max-width: 520px;
  margin-bottom: 3rem;
}

.vector-ingredients__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ingredient {
  background: var(--color-white-strong);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.ingredient__index {
  font-family: var(--font-family-heading);
  color: var(--color-orange-main);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .vector-ingredients__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .vector-ingredients__list {
    grid-template-columns: 1fr;
  }
}
.vector-cards {
  background: var(--color-white-strong);
}

.vector-cards__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vector-cards__header {
  max-width: 520px;
}

.vector-cards__title {
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
}

.vector-cards__intro {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
}

.vector-card {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 3rem;
  align-items: center;
  background: var(--color-white-soft);
  box-shadow: var(--shadow-soft);
}

.vector-card__image img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
}

.vector-card__content {
  padding: 2rem 2.5rem 2rem 0;
}

.vector-card__title {
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.vector-card__text {
  font-size: var(--font-size-md);
  color: var(--color-gray-700);
  line-height: var(--line-height-loose);
}

@media (max-width: 1024px) {
  .vector-card {
    grid-template-columns: 1fr;
  }

  .vector-card__content {
    padding: 2rem;
  }

  .vector-card__image img {
    max-height: 220px;
  }
}

@media (max-width: 480px) {
  .vector-card__image img {
    max-height: 180px;
  }
}

.system-overview__visual {
  position: relative;
  margin: 3rem 0;
}

.system-overview__visual img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.system-overview__tag {
  position: absolute;
  font-size: var(--font-size-xs);
  background: var(--color-white-strong);
  padding: 0.3rem 0.6rem;
  box-shadow: var(--shadow-soft);
}

.system-overview__tag--a {
  top: 20%;
  left: 15%;
}
.system-overview__tag--b {
  top: 50%;
  left: 60%;
}
.system-overview__tag--c {
  top: 70%;
  left: 30%;
}

.system-process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.system-process__flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.system-process__visual {
  grid-column: 1 / -1;
}

.system-process__visual img {
  height: 320px;
  width: 100%;
  object-fit: cover;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.process-step__index {
  font-family: var(--font-family-heading);
  color: var(--color-orange-main);
}

.system-reflection__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 768px) {
  .system-reflection__inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .system-process__intro,
  .system-process__flow {
    grid-column: 1 / -1;
  }
}

.system-reflection__aside {
  position: relative;
}

.system-reflection__aside img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.system-reflection__line {
  position: absolute;
  top: 0;
  right: -1rem;
  width: 2px;
  height: 100%;
  background: var(--color-orange-main);
}

.system-break {
  position: relative;
  overflow: hidden;
  color: var(--color-white-strong);
}

.system-break__background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e0e11 0%, #1a1a22 40%, #ff6a00 140%);
  z-index: 0;
}

.system-break__inner {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  gap: 20px;
  min-height: 80vh;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.system-break__image-wrap {
  width: 50%;
  opacity: 0.85;
}

.system-break__image {
  width: 100%;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.system-break__text {
  position: relative;
}

.system-break__text--primary {
  margin-bottom: 4rem;
}

.system-break__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--color-white-strong);
}

.system-break__text--secondary p {
  font-size: var(--font-size-md);
  line-height: var(--line-height-loose);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.system-break__note {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2.5rem;
}

.system-break__wrap-text {
  width: 50%;
}

@media (max-width: 1024px) {
  .system-break__image-wrap {
    margin-bottom: 3rem;
    width: 100%;
    
  }

  .system-break__wrap-text {
  width: auto;
}

  .system-break__image-wrap img {
    height: 350px;
    width: 100%;

    object-fit: cover;
  }

  .system-break__inner {
    min-height: auto;
    flex-direction: column;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
/* ========== Personal Intro Section ========== */

.personal-intro {
  background: var(--color-white-soft);
}




.personal-intro__title {
  font-size: var(--font-size-xl);
  margin-bottom: 1.5rem;
}

.personal-intro__text {
  font-size: var(--font-size-md);
  color: var(--color-gray-700);
  line-height: var(--line-height-loose);
  margin-bottom: 1.5rem;
}

.personal-intro__note {
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  max-width: 480px;
}

/* ========== Personal Form / Quiz ========== */

.personal-form {
  background: var(--color-white-strong);
}

.quiz-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.quiz-title {
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-600);
}

.form-group select,
.form-group input {
  padding: 0.75rem 1rem;
  font-family: var(--font-family-base);
  font-size: var(--font-size-md);
  border: 1px solid var(--color-white-muted);
  background: var(--color-white-soft);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--color-orange-main);
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.15);
}

.quiz-button {
  padding: 0.9rem 2.5rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--color-orange-main);
  color: var(--color-white-strong);
  transition: background var(--transition-fast),
              box-shadow var(--transition-fast);
}

.quiz-button:hover {
  background: var(--color-orange-deep);
  box-shadow: var(--shadow-medium);
}

@media (max-width: 480px) {
  .quiz-form {
    gap: 2rem;
  }
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-form__title {
  font-size: var(--font-size-xl);
  margin-bottom: 0.5rem;
}

.contact-form__intro {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-family-base);
  font-size: var(--font-size-md);
  background: var(--color-white-soft);
  border: 1px solid var(--color-white-muted);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group--checkbox label {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
  display: flex;
  gap: 0.5rem;
}

.form-group--checkbox a {
  color: var(--color-orange-main);
}

.contact-form__button {
  padding: 0.9rem 2.5rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--color-orange-main);
  color: var(--color-white-strong);
}

.contact-form__note {
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
}

.alert {
  padding: 0.75rem 1rem;
  font-size: var(--font-size-sm);
}

.alert--success {
  background: #e8f5ee;
  color: #1f6b43;
}

.alert--error {
  background: #fdecea;
  color: #8a1c1c;
}
.form-group--checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.4;
}

.form-group--checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-white-muted);
  background: var(--color-white-strong);
  position: relative;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: background var(--transition-fast),
              border-color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.form-group--checkbox input[type="checkbox"]:hover {
  border-color: var(--color-orange-soft);
}

.form-group--checkbox input[type="checkbox"]:checked {
  background: var(--color-orange-main);
  border-color: var(--color-orange-main);
}

.form-group--checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--color-white-strong);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-group--checkbox input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
}

.form-group--checkbox span {
  font-size: var(--font-size-xs);
  color: var(--color-gray-600);
}

.form-group--checkbox a {
  color: var(--color-orange-main);
  text-decoration: underline;
}

.thanks-section {
  background: var(--color-white-strong);
}

.thanks-section__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.thanks-section__title {
  font-size: var(--font-size-xxl);
  margin-bottom: 1.5rem;
}

.thanks-section__lead {
  font-size: var(--font-size-lg);
  color: var(--color-gray-700);
  margin-bottom: 2rem;
  line-height: var(--line-height-loose);
}

.thanks-section__text {
  font-size: var(--font-size-md);
  color: var(--color-gray-800);
  line-height: var(--line-height-loose);
  margin-bottom: 1.5rem;
}

.thanks-section__note {
  margin-top: 2.5rem;
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  max-width: 520px;
}

.thanks-section__link {
  display: inline-block;
  margin-top: 3rem;
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-orange-main);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.thanks-section__link:hover {
  border-color: var(--color-orange-main);
}

@media (max-width: 768px) {
  .thanks-section__title {
    font-size: var(--font-size-xl);
  }

  .thanks-section__inner {
    text-align: left;
  }
}
