/* =========================================================
   GLOBAL TOKENS
   ========================================================= */
:root {
  /* ---- Color palette ---- */
  --color-bg:           #232a33;
  --color-bg-alt:       #181d24;
  --color-bg-dark:      #070b0f;
  --color-bg-darker:    #05080a;
  --color-text:         #fff;
  --color-text-soft:    #f2f2f2;
  --color-text-softer:  #fffdfd;
  --color-text-muted:   #f0f0f0;
  --color-text-dim:     #c7c7c7;
  --color-text-faint:   #b8b8b8;
  --color-text-mute:    #3c3c3c;
  --color-accent:       #f89485;
  --color-accent-blue:  #49c6f3;
  --color-shadow:       #0f1317;

  /* ---- Typography families ---- */
  --font-primary:   'Plus Jakarta Sans', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* ---- Fluid font sizes (clamp = min rem / preferred vw / max rem)
         design width 1280px; px-to-vw ≈ px / 12.8                ---- */
  --fs-10:  clamp(0.5rem,    0.78vw,  0.75rem);   /*  10px */
  --fs-12:  clamp(0.625rem,  0.94vw,  0.875rem);  /*  12px */
  --fs-14:  clamp(0.75rem,   1.09vw,  1rem);      /*  14px */
  --fs-16:  clamp(0.875rem,  1.25vw,  1.125rem);  /*  16px */
  --fs-18:  clamp(1rem,      1.41vw,  1.25rem);   /*  18px */
  --fs-20:  clamp(1.125rem,  1.56vw,  1.375rem);  /*  20px */
  --fs-24:  clamp(1.25rem,   1.88vw,  1.625rem);  /*  24px */
  --fs-25:  clamp(1.25rem,   1.95vw,  1.75rem);   /*  25px */
  --fs-30:  clamp(1.375rem,  2.34vw,  2rem);      /*  30px */
  --fs-32:  clamp(1.5rem,    2.5vw,   2.25rem);   /*  32px */
  --fs-35:  clamp(1.75rem,   2.73vw,  2.5rem);    /*  35px */
  --fs-36:  clamp(1.75rem,   2.81vw,  2.5rem);    /*  36px */
  --fs-40:  clamp(2rem,      3.13vw,  2.75rem);   /*  40px */
  --fs-45:  clamp(2.25rem,   3.52vw,  3.25rem);   /*  45px */
  --fs-50:  clamp(2.5rem,    3.91vw,  3.5rem);    /*  50px */
  --fs-70:  clamp(3rem,      5.47vw,  5rem);      /*  70px */
  --fs-75:  clamp(3.25rem,   5.86vw,  5.25rem);   /*  75px */
  --fs-120: clamp(5rem,      9.38vw,  8.5rem);    /* 120px */
  --fs-160: clamp(6rem,     12.5vw,  11rem);      /* 160px */
  --fs-200: clamp(8rem,     15.63vw, 14rem);      /* 200px */
  --fs-250: clamp(10rem,    19.53vw, 17.5rem);    /* 250px */
  --fs-300: clamp(12rem,    23.44vw, 21rem);      /* 300px */
}

/* =========================================================
   RESET + BASE
   ========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-primary);
  overflow-x: hidden;
}
body { position: relative; }

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   PAGE WRAPPER
   ========================================================= */
.page {
  position: relative;
  width: 80rem;
  height: 575.8125rem;
  margin: 0 auto;
  background: transparent;
  overflow: hidden;
}

/* =========================================================
   HERO BACKGROUNDS
   ========================================================= */
.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 105.625rem;
  opacity: 0.3;
  object-fit: cover;
  pointer-events: none;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0,0,0,0) 100%);
}
.hero-fade {
  position: absolute;
  left: -0.9375rem;
  top: 26.25rem;
  width: 80rem;
  height: 81rem;
  background: linear-gradient(0deg, rgba(35,42,51,1) 0%, rgba(35,42,51,0) 100%);
  pointer-events: none;
}
.hero-clouds {
  position: absolute;
  left: calc(50% + 6.125rem);
  top: 2.5625rem;
  width: 43.6875rem;
  height: 25.375rem;
  object-fit: cover;
  pointer-events: none;
  z-index: 2;
  will-change: transform, opacity;
  transition: transform 0.15s linear, opacity 0.4s ease-out;
}
.hero-side-clouds {
  position: absolute;
  left: calc(50% - 68.4375rem);
  top: 9.375rem;
  width: 69.6875rem;
  height: 30rem;
  object-fit: cover;
  pointer-events: none;
  z-index: 2;
  will-change: transform, opacity;
  transition: transform 0.15s linear, opacity 0.4s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .hero-clouds, .hero-side-clouds { transition: none; transform: none !important; }
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 80rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4.0625rem 0 5.1875rem;
  z-index: 10;
}
.logo {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--fs-35);
}
.nav { display: flex; gap: 2.5rem; }
.nav a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--fs-14);
}

/* =========================================================
   HERO COPY
   ========================================================= */
.take-off-img {
  position: absolute;
  left: 22.4375rem;
  top: 12.0625rem;
  width: 35.0625rem;
  height: 21.25rem;
  object-fit: contain;
}
.hero-tag {
  position: absolute;
  left: 50%;
  top: 33.3125rem;
  transform: translateX(-50%);
  width: 35.8125rem;
  font-weight: 500;
  font-size: var(--fs-14);
  text-align: center;
  line-height: 1.75rem;
  text-shadow: 0 0 0.375rem rgba(0,0,0,0.3);
}
.hero-title {
  position: absolute;
  left: calc(50% - 24.5625rem);
  top: 46.3125rem;
  width: 46.3125rem;
  font-weight: 700;
  font-size: var(--fs-50);
}
.hero-desc {
  position: absolute;
  left: calc(50% - 24.5rem);
  top: 51.0625rem;
  width: 49rem;
  font-weight: 500;
  font-size: var(--fs-20);
  line-height: 2.5rem;
  color: var(--color-text-soft);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 3.5rem;
  padding: 0 0.875rem;
  border-radius: 1.25rem;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: var(--fs-12);
  letter-spacing: 0.03125rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  user-select: none;
}
.outline-btn {
  border: 0.09375rem solid var(--color-text);
  background: transparent;
  color: var(--color-text);
  width: 10.625rem;
}
.outline-btn:hover { background: rgba(255,255,255,0.08); transform: translateY(-0.0625rem); }
.arr { display: inline-block; width: 1.125rem; height: 1.125rem; vertical-align: middle; }
.srv-list .arr { width: 2rem; height: 2rem; }
.big-arrow .arr,
img.big-arrow { width: 2.625rem; height: 2.625rem; }

/* =========================================================
   BOARDING PASS
   ========================================================= */
.boarding {
  position: absolute;
  left: 8.1875rem;
  top: 73.5rem;
  width: 64.0625rem;
  color: var(--color-text);
}
.boarding-head {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  margin-bottom: 2rem;
}
.plane-ico { width: 3rem; height: 3rem; }
.boarding h2 {
  font-weight: 700;
  font-size: var(--fs-40);
}
.boarding-grid {
  display: grid;
  grid-template-columns: 12.875rem 1fr 7.625rem;
  gap: 2rem;
  align-items: start;
}
.bp-col { display: flex; flex-direction: column; gap: 1.375rem; }
.bp-col-wide .bp-row { width: 39.125rem; }
.bp-label {
  font-weight: 700;
  font-size: var(--fs-18);
  color: var(--color-text-soft);
  margin-bottom: 0.25rem;
}
.bp-row {
  display: flex;
  gap: 0.25rem;
  height: 2.375rem;
  position: relative;
}

/* =========================================================
   QUOTE
   ========================================================= */
.quote-sec {
  position: absolute;
  left: 0;
  top: 111.0625rem;
  width: 80rem;
  height: 26.25rem;
  overflow: visible;
}
.qglow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.qglow-1 { left: calc(50% - 63.75rem); top: 83.5625rem; width: 66.25rem; height: 64.375rem; }
.qglow-2 { left: calc(50% - 70rem);    top: 99.8125rem; width: 66.25rem; height: 64.375rem; }
.qglow-3 { left: calc(50% - 2.5rem);   top: 104.8125rem; width: 66.25rem; height: 64.375rem; }
.qglow-4 { left: calc(50% + 5.625rem); top: 93.5625rem; width: 66.25rem; height: 64.375rem; }
.qglow-5 { left: calc(50% - 33.125rem); top: 284.9375rem; width: 66.25rem; height: 64.375rem; }
.qmark, .qlogo, .qtext, .qauthor, .qrole { z-index: 1; }
.qmark {
  position: absolute;
  left: 14.3125rem;
  top: 7.125rem;
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: var(--fs-300);
  line-height: 0.7;
  opacity: 0.5;
  color: var(--color-text);
}
.qlogo {
  position: absolute;
  left: 36.0625rem;
  top: 0;
  width: 8.625rem;
  height: 4.375rem;
  object-fit: contain;
}
.qtext {
  position: absolute;
  left: 20.5625rem;
  top: 8.1875rem;
  width: 45.4375rem;
  font-weight: 700;
  font-size: var(--fs-36);
  line-height: 3.125rem;
}
.qauthor {
  position: absolute;
  right: 17.3125rem;
  top: 19.4375rem;
  font-weight: 700;
  font-size: var(--fs-24);
  line-height: 2.5rem;
  text-align: right;
}
.qrole {
  position: absolute;
  right: 17.3125rem;
  top: 21.9375rem;
  font-weight: 400;
  font-size: var(--fs-16);
  text-align: right;
}
.accent { color: var(--color-accent); }

/* =========================================================
   SHOW UP
   ========================================================= */
.show-up {
  position: absolute;
  left: 3.0625rem;
  top: 149.75rem;
  width: 74.75rem;
}
.show-up h2 {
  font-weight: 700;
  font-size: var(--fs-70);
  line-height: 5.5rem;
  color: var(--color-text);
}
.big-arrow {
  position: absolute;
  right: 0;
  top: 7.1875rem;
  width: 2.625rem;
  height: 2.625rem;
}

/* =========================================================
   CASE CARD
   ========================================================= */
.case-card {
  position: absolute;
  left: 2.625rem;
  top: 166.875rem;
  width: 74.75rem;
  height: 27.9375rem;
  background: var(--color-bg);
  box-shadow: 0 0 0.75rem rgba(0,0,0,0.4);
  border-radius: 0.375rem;
  overflow: hidden;
}
.case-head {
  height: 3.125rem;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  padding: 0 1.875rem;
  gap: 0.75rem;
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: var(--fs-20);
  color: var(--color-text-mute);
}
.case-ico { width: 1.9375rem; height: 2rem; filter: invert(60%); }
.case-right { margin-left: auto; }
.case-slides {
  position: absolute;
  left: 0;
  top: 3.25rem;
  width: 74.75rem;
  height: 24.6875rem;
}
.case-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.case-slide.active { opacity: 1; pointer-events: auto; }
.case-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 59.1875rem;
  height: 24.6875rem;
  object-fit: cover;
}
.case-side {
  position: absolute;
  right: 0;
  top: 0;
  width: 15.4375rem;
  height: 24.6875rem;
  background: var(--color-bg-darker);
  padding: 2.5rem 1.75rem 1.875rem;
  display: flex;
  flex-direction: column;
}
.case-dots {
  position: absolute;
  left: 2.625rem;
  top: 196.0625rem;
  width: 74.75rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  z-index: 3;
}
.case-dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 0.09375rem solid var(--color-text);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.case-dot:hover { background: rgba(255,255,255,0.4); }
.case-dot.active { background: var(--color-text); }
.case-side h3 {
  font-weight: 600;
  font-size: var(--fs-18);
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-softer);
}
.case-side p {
  font-weight: 300;
  font-size: var(--fs-14);
  line-height: 1.75rem;
  color: var(--color-text-softer);
  margin-bottom: auto;
}
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: var(--fs-12);
  padding-bottom: 0.375rem;
  border-bottom: 0.0625rem solid var(--color-text);
  margin-top: 1.25rem;
  width: fit-content;
  align-self: flex-end;
}

/* =========================================================
   GHOST WORDS (BACKGROUND TEXT)
   ========================================================= */
.bg-word {
  position: absolute;
  font-weight: 600;
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.bg-letter {
  display: inline-block;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .bg-letter { transform: none !important; }
}
.bg-word-1 {
  left: -1rem;
  top: 209.5625rem;
  font-size: var(--fs-160);
  line-height: 5.5rem;
}
.bg-word-2 {
  left: -8rem;
  top: 415.1875rem;
  font-size: var(--fs-250);
  line-height: 5.5rem;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  position: absolute;
  left: 0;
  top: 212.3125rem;
  width: 80rem;
  height: 87.5rem;
}
.srv-title {
  position: absolute;
  left: 8.0625rem;
  top: 0;
  font-weight: 700;
  font-size: var(--fs-70);
  line-height: 5.5rem;
  color: var(--color-text);
}
.srv-desc {
  position: absolute;
  left: 10rem;
  top: 13.25rem;
  width: 21.5rem;
  font-weight: 400;
  font-size: var(--fs-24);
  line-height: 2.5rem;
  color: var(--color-text-soft);
}
.srv-list {
  position: absolute;
  left: 37.4375rem;
  top: 13.8125rem;
  width: 37.625rem;
  list-style: none;
}
.srv-list li {
  position: relative;
  padding: 3.25rem 0;
  border-bottom: 0.0625rem solid var(--color-text);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-40);
  line-height: 1.1;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: var(--color-text);
  min-height: 15.9375rem;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.35s ease;
}
.srv-list li:last-child { border-bottom: none; }
.srv-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.35s ease;
}
.srv-hint {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--fs-16);
  line-height: 1.375rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-accent);
  max-width: 80%;
  margin-top: 1.125rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.srv-list li:hover { color: var(--color-accent); }
.srv-list li:hover .srv-main { transform: translateY(-1.625rem); }
.srv-list li:hover .srv-hint { opacity: 1; transform: translateY(-1.25rem); }
.srv-list li:hover .arr {
  filter: invert(63%) sepia(42%) saturate(486%) hue-rotate(326deg) brightness(102%) contrast(96%);
}
.srv-btn {
  width: 11.75rem !important;
  left: 5.75rem !important;
  top: 179.6875rem;
}

/* =========================================================
   WITH YOU
   ========================================================= */
.with-you {
  position: absolute;
  left: 0;
  top: 304rem;
  width: 80rem;
  height: 43.75rem;
}
.ghost-text {
  position: absolute;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: var(--fs-200);
  opacity: 0.1;
  color: var(--color-text);
  white-space: nowrap;
}
.gt-with { left: 12.375rem; top: 0; }
.gt-you  { left: 41rem;     top: 10.625rem; }
.with-you h2 {
  position: absolute;
  left: 50%;
  top: 7.5625rem;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: var(--fs-50);
  text-align: center;
  white-space: nowrap;
  z-index: 3;
}
.wy-desc {
  position: absolute;
  left: calc(50% - 17.8125rem);
  top: 12.3125rem;
  width: 35.6875rem;
  font-weight: 400;
  font-size: var(--fs-20);
  line-height: 1.75rem;
  text-align: center;
}
.compare {
  position: absolute;
  left: 10.0625rem;
  top: 32.3125rem;
  width: 60rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  row-gap: 0.875rem;
  text-align: center;
  padding-bottom: 1.5rem;
}
.compare .col {
  display: contents;
}
.compare .col-title {
  font-weight: 700;
  font-size: var(--fs-25);
  text-transform: uppercase;
  margin: 0;
}
.compare .col-sub {
  font-weight: 600;
  font-size: var(--fs-20);
  margin: 0;
}
.compare .col:nth-child(1) .col-title { grid-column: 1; grid-row: 1; }
.compare .col:nth-child(2) .col-title { grid-column: 2; grid-row: 1; }
.compare .col:nth-child(3) .col-title { grid-column: 3; grid-row: 1; }
.compare .col:nth-child(1) .col-sub { grid-column: 1; grid-row: 2; }
.compare .col:nth-child(2) .col-sub { grid-column: 2; grid-row: 2; }
.compare .col:nth-child(3) .col-sub { grid-column: 3; grid-row: 2; }
.compare-line {
  grid-column: 1 / -1;
  grid-row: 3;
  position: relative;
  height: 0.125rem;
  margin: 1.375rem 16.667% 0;
  background: var(--color-accent);
  border-radius: 0.125rem;
}
.compare-line span {
  position: absolute;
  top: 50%;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0.5rem rgba(248,148,133,0.6);
}
.compare-line span:nth-child(1) { left: 0%; }
.compare-line span:nth-child(2) { left: 50%; }
.compare-line span:nth-child(3) { left: 100%; }
.gradient {
  background: linear-gradient(90deg, var(--color-accent-blue) 6%, var(--color-accent) 95%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* =========================================================
   ELIMINATE
   ========================================================= */
.eliminate-bg {
  position: absolute;
  left: 0;
  top: 355.125rem;
  width: 100vw;
  height: 46rem;
  background: var(--color-bg-alt);
  z-index: 0;
}
.eliminate {
  position: absolute;
  left: 0;
  top: 355.125rem;
  width: 80rem;
  height: 46rem;
  padding: 6.875rem 0 0 5.625rem;
}
.eliminate h2 {
  width: 47.4375rem;
  font-weight: 800;
  font-size: var(--fs-40);
  line-height: 4.5rem;
  color: var(--color-text);
}
.eliminate p {
  width: 25.3125rem;
  font-weight: 400;
  font-size: var(--fs-18);
  line-height: 1.875rem;
  color: var(--color-text-soft);
  margin-top: 0.875rem;
}
.eliminate p strong { font-weight: 700; color: var(--color-text); }
.eliminate-img {
  position: absolute;
  right: -8.75rem;
  top: 366.375rem;
  width: 55rem;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

/* =========================================================
   FEELING LOST
   ========================================================= */
.feeling-lost {
  position: absolute;
  left: 0;
  top: 413.8125rem;
  width: 80rem;
  height: 43.75rem;
}
.fl-img {
  position: absolute;
  left: 0;
  top: 19.4375rem;
  width: 34.5625rem;
  height: 25.125rem;
  object-fit: cover;
}
.feeling-lost h2 {
  position: absolute;
  left: 10.8125rem;
  top: 0;
  font-weight: 700;
  font-size: var(--fs-120);
  line-height: 10rem;
  white-space: nowrap;
  color: var(--color-text);
}
.feeling-lost h3 {
  position: absolute;
  left: 16.0625rem;
  top: 8.4375rem;
  font-weight: 700;
  font-size: var(--fs-75);
  line-height: 10rem;
  white-space: nowrap;
  color: var(--color-accent);
}
.feeling-lost h4 {
  position: absolute;
  left: 38.3125rem;
  top: 21.25rem;
  width: 32.4375rem;
  font-weight: 600;
  font-size: var(--fs-32);
  line-height: 2.5rem;
  color: var(--color-text-muted);
}
.feeling-lost p {
  position: absolute;
  left: 38.3125rem;
  top: 27.25rem;
  width: 34.4375rem;
  font-weight: 400;
  font-size: var(--fs-14);
  line-height: 1.75rem;
  color: var(--color-text-softer);
}
.fl-btn { width: 10.625rem !important; left: 38.3125rem !important; top: 36.5625rem; }

/* =========================================================
   CONTACT CARD
   ========================================================= */
.contact {
  position: absolute;
  left: 12.75rem;
  top: 472.625rem;
  width: 55.5625rem;
  height: 73.875rem;
  background: var(--color-bg);
  box-shadow: -0.375rem 0.375rem 1.625rem var(--color-shadow);
  padding: 2.625rem 9.625rem 2.5rem;
}
.contact-glow {
  left: calc(50% - 50.375rem);
  top: 439.8125rem;
  width: 66.25rem;
  height: 64.375rem;
}
.contact h2 {
  width: 30.125rem;
  font-weight: 700;
  font-size: var(--fs-30);
  line-height: 4.5rem;
  color: var(--color-text);
  margin-bottom: 1.625rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  gap: 2.6875rem;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 0.03125rem solid var(--color-text-dim);
  padding: 0.5rem 0;
  font-family: var(--font-secondary);
  font-size: var(--fs-16);
  color: var(--color-text);
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--color-text-dim); }
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--color-accent); }
.contact-form textarea {
  border: 0.03125rem solid var(--color-text-dim);
  padding: 1.125rem 1.5rem;
  resize: vertical;
  min-height: 8.4375rem;
  font-family: inherit;
}
.send-row { display: flex; justify-content: flex-end; }
.send-row button {
  background: transparent;
  border: none;
  border-bottom: 0.0625rem solid var(--color-text);
  color: var(--color-text);
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: var(--fs-12);
  letter-spacing: 0.03125rem;
  padding: 0 0 0.375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}
.send-row button:hover { color: var(--color-accent); }

.meet-divider {
  position: absolute;
  left: 11.375rem;
  top: 46.25rem;
  width: 35.9375rem;
  height: 0.0625rem;
  background: var(--color-text);
  box-shadow: 0 0 0.5rem rgba(255,255,255,0.45), 0 0 1rem rgba(255,255,255,0.2);
  opacity: 0.85;
}

/* =========================================================
   MEET BLOCK
   ========================================================= */
.meet {
  position: absolute;
  left: 0;
  top: 47.4375rem;
  width: 55.5625rem;
  height: 22.5rem;
  padding: 3.75rem 0 0 6.5625rem;
}
.meet::before {
  content: '';
  position: absolute;
  left: 7.375rem;
  top: 5.625rem;
  width: 11.4375rem;
  height: 11.6875rem;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translate(1rem, 1rem);
  box-shadow:
    0 0 0.625rem 0.0625rem rgba(248,148,133,0.25),
    0 0 1.375rem 0.25rem rgba(248,148,133,0.10);
}
.meet-photo {
  position: absolute;
  left: 6.5625rem;
  top: 3.75rem;
  width: 15.125rem;
  height: 15.125rem;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
}
.meet-text {
  margin-left: 17.5rem;
  font-weight: 400;
  font-size: var(--fs-20);
  line-height: 1.75rem;
  color: var(--color-text-muted);
  width: 24.9375rem;
}
.meet-text a { text-decoration: underline; }
.meet-tagline {
  margin-left: 17.5rem;
  margin-top: 1.125rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: var(--fs-20);
  letter-spacing: 0.0625rem;
  color: var(--color-accent);
}
.meet-btn { width: 11.4375rem !important; left: 24.0625rem !important; top: 17.5rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  position: absolute;
  left: 0;
  top: 563.3125rem;
  width: 80rem;
  height: 12.5rem;
  display: grid;
  grid-template-columns: 13.75rem 3.75rem 13.75rem 1fr;
  align-items: start;
  padding: 3.75rem 5rem;
  gap: 2.5rem;
}
.foot-logo {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--fs-35);
  color: var(--color-text);
}
.foot-col p {
  font-size: var(--fs-10);
  line-height: 1.6;
  color: var(--color-text);
  font-weight: 500;
}
.foot-h {
  color: var(--color-accent) !important;
  font-weight: 700 !important;
  font-size: var(--fs-12) !important;
  margin-bottom: 0.25rem;
}
.foot-li {
  justify-self: start;
  width: 2.3125rem;
  height: 2.3125rem;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-text-faint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.foot-li svg { width: 2rem; height: 2rem; }
