:root {
  --page: #fbfaf7;
  --paper: #fffdf8;
  --paper-soft: #f8f2e8;
  --ink: #17130f;
  --muted: #6f675f;
  --gold: #b37a36;
  --gold-bright: #ef9822;
  --gold-dark: #8d5c24;
  --line: rgba(130, 92, 48, .18);
  --shadow: 0 24px 70px rgba(76, 53, 25, .08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(239, 152, 34, .07), transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, var(--page) 55%, #fffdf8 100%);
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(100% - 36px, 1280px); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(179, 122, 54, .08);
}
.header-inner {
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.logo {
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.5vw, 34px);
  line-height: 1;
  color: var(--gold-dark);
  letter-spacing: -.04em;
  text-shadow: 0 8px 26px rgba(179, 122, 54, .18);
}
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 56px); }
.nav-link { color: #312b25; font-size: 15px; font-weight: 560; }
.nav-link:hover { color: var(--gold-dark); }
.header-cta { justify-self: end; }

.btn {
  border: 0;
  border-radius: 11px;
  padding: 11px 22px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn.primary {
  color: white;
  background: linear-gradient(180deg, #f5a336, #e38314);
  box-shadow: 0 12px 24px rgba(227, 131, 20, .25);
}
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(227, 131, 20, .3); }
.btn:disabled { opacity: .72; cursor: wait; }

.hero { padding: 34px 0 42px; }
.hero-grid {
  min-height: clamp(520px, 48vw, 660px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 42px);
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}
.hero-story-card {
  position: relative;
  min-height: clamp(520px, 48vw, 660px);
  display: grid;
  grid-template-columns: minmax(330px, .98fr) minmax(260px, .72fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 0 34px 34px 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(255,255,255,.96), rgba(255,253,248,.7) 18rem, transparent 32rem),
    linear-gradient(90deg, rgba(255,253,248,.98) 0%, rgba(255,253,248,.94) 55%, rgba(248,238,222,.62) 100%);
  box-shadow: 0 22px 70px rgba(76, 53, 25, .06);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 88px) clamp(28px, 5vw, 72px);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}
h1 {
  max-width: 670px;
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: .98;
}
.hero-lead {
  max-width: 610px;
  margin: 0 0 28px;
  color: #453d34;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}
.coffee-line {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(17px, 1.45vw, 21px);
}
.hero-note {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}
.hero-cta { min-width: 390px; min-height: 66px; border-radius: 12px; font-size: 20px; }
.hero-showcase { display: contents; }
.phone-reel {
  position: relative;
  height: clamp(520px, 47vw, 650px);
  padding: 13px;
  border-radius: 48px;
  background:
    linear-gradient(145deg, #25211e, #070605 45%, #2f2925);
  box-shadow:
    0 28px 70px rgba(76, 53, 25, .16),
    inset 0 0 0 1px rgba(255,255,255,.16);
}
.phone-reel::before {
  content: "";
  position: absolute;
  top: 96px;
  left: -4px;
  width: 4px;
  height: 78px;
  border-radius: 8px 0 0 8px;
  background: #181513;
}
.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #d9cdbd;
}
.phone-screen::before,
.phone-screen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  height: 96px;
  pointer-events: none;
}
.phone-screen::before {
  top: 0;
  background: linear-gradient(180deg, rgba(8,7,6,.35), transparent);
}
.phone-screen::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(8,7,6,.45), transparent);
}
.reels-status {
  position: absolute;
  z-index: 8;
  top: 19px;
  left: 24px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.58);
  pointer-events: none;
}
.reels-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}
.battery-percent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 27px;
  height: 19px;
  margin-left: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  color: rgba(16,14,12,.86);
  font-size: 11px;
  font-weight: 900;
  text-shadow: none;
}
.signal-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}
.signal-bars i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: #fff;
}
.signal-bars i:nth-child(1) { height: 4px; }
.signal-bars i:nth-child(2) { height: 6px; }
.signal-bars i:nth-child(3) { height: 8px; }
.signal-bars i:nth-child(4) { height: 11px; }
.wifi-icon {
  position: relative;
  width: 15px;
  height: 10px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 15px 15px 0 0;
}
.wifi-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 4px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fff;
}
.battery-icon {
  display: none;
  position: relative;
  width: 22px;
  height: 11px;
  padding: 2px;
  border: 1.8px solid #fff;
  border-radius: 4px;
  box-sizing: border-box;
}
.battery-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -4px;
  width: 2px;
  height: 5px;
  border-radius: 0 2px 2px 0;
  background: #fff;
}
.battery-icon span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: 2px;
  background: #fff;
}
.reels-topnav {
  position: absolute;
  z-index: 8;
  top: 66px;
  left: 20px;
  right: 15px;
  display: grid;
  grid-template-columns: 30px auto auto 1fr;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 3px 12px rgba(0,0,0,.58);
  pointer-events: none;
}
.reels-topnav strong {
  color: #fff;
  font-size: 21px;
}
.reels-plus {
  color: #fff;
  font-size: 34px;
  font-weight: 300;
  line-height: .8;
}
.reels-friends {
  display: inline-flex;
  justify-self: end;
}
.reels-friends i {
  width: 22px;
  height: 22px;
  margin-left: -7px;
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(238,168,62,.95), rgba(58,151,219,.95));
  box-shadow: 0 4px 10px rgba(0,0,0,.26);
}
.reels-friends i:nth-child(2) {
  background: linear-gradient(135deg, rgba(60,146,213,.95), rgba(240,190,96,.92));
}
.reels-friends i:nth-child(3) {
  background: radial-gradient(circle at 45% 36%, #e8e4dd 0 18%, #171616 19% 100%);
}
.reels-actions {
  position: absolute;
  z-index: 9;
  top: 48%;
  right: 12px;
  bottom: auto;
  width: 34px;
  transform: translateY(-14%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #fff;
  text-shadow: 0 2px 9px rgba(0,0,0,.7);
  filter: drop-shadow(0 3px 7px rgba(0,0,0,.46));
  pointer-events: none;
}
.reels-action-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-top: 7px;
}
.reels-action-icon:first-child {
  margin-top: 0;
}
.reels-action-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.reels-actions small {
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.reels-dots {
  margin-top: 6px;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 1;
}
.reels-account {
  position: absolute;
  z-index: 7;
  left: 20px;
  right: 72px;
  bottom: 70px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0,0,0,.62);
  pointer-events: none;
}
.reels-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: #080808;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,.92),
    0 8px 18px rgba(0,0,0,.34);
}
.reels-name {
  overflow: hidden;
  font-size: 13px;
  letter-spacing: .01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.reels-follow {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1.2px solid rgba(255,255,255,.72);
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 7px 18px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.reels-tabbar {
  position: absolute;
  z-index: 7;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-items: center;
  background: #070c11;
  border-top: 1px solid rgba(255,255,255,.16);
  pointer-events: none;
}
.reels-tabbar span {
  position: relative;
  width: 27px;
  height: 27px;
}
.tab-home::before {
  content: "";
  position: absolute;
  inset: 7px 4px 2px;
  border: 3px solid #fff;
  border-top: 0;
  border-radius: 4px;
}
.tab-home::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}
.tab-play::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 8px;
  background: #fff;
}
.tab-play::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  border-left: 8px solid #070c11;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.tab-send::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 3px solid #fff;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(38deg) skew(-8deg);
  border-radius: 3px;
}
.tab-send::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff1744;
}
.tab-search::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 4px solid #fff;
  border-radius: 50%;
}
.tab-search::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(45deg);
}
.tab-profile::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  border-radius: 50%;
}
.tab-profile::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 2px;
  width: 16px;
  height: 10px;
  border: 3px solid #fff;
  border-radius: 12px 12px 4px 4px;
}
.phone-notch {
  position: absolute;
  z-index: 12;
  top: 24px;
  left: 50%;
  width: 92px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(10, 9, 8, .96);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.phone-home {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 18px;
  width: 98px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
}
.vertical-reel-track {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .85s cubic-bezier(.2, .75, .18, 1);
  will-change: transform;
}
.vertical-reel-slide {
  min-height: 100%;
  margin: 0;
}
.vertical-reel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coffee-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.coffee-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.coffee-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,253,248,.62), rgba(255,253,248,0) 38%);
}

.tariff-band { padding: 0 0 64px; }
.tariff-card {
  width: min(100%, 1190px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.tariff-item {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.tariff-item:last-child { border-right: 0; }
.tariff-item svg, .step-card svg, .benefit-item svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tariff-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 400;
}
.tariff-item span { color: var(--muted); font-size: 16px; }

.section { padding: 34px 0 58px; }
.section h2 {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
}
.step-card {
  position: relative;
  min-height: 292px;
  padding: 28px 22px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 14px 42px rgba(76, 53, 25, .045);
}
.step-card:not(:last-child)::after {
  content: "····›";
  position: absolute;
  top: 50%;
  right: -46px;
  transform: translateY(-50%);
  color: rgba(179,122,54,.38);
  letter-spacing: 5px;
  font-size: 26px;
}
.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: -6px 0 22px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: #f7ead8;
  font-size: 25px;
  font-weight: 800;
}
.step-card svg { width: 46px; height: 46px; margin-bottom: 22px; }
.step-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}
.step-card p { margin: 0; color: var(--muted); font-size: 15px; }

.benefits-card, .faq-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}
.benefits-card h2, .faq-card h2 { margin-bottom: 28px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-item {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.72);
}
.benefit-item svg { width: 34px; height: 34px; flex: 0 0 auto; }
.benefit-item span { font-size: 16px; }
.benefit-item b { color: var(--gold-dark); font-weight: 900; }

.faq-list { display: grid; gap: 10px; }
.faq-item {
  overflow: hidden;
  border: 1px solid rgba(130,92,48,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
}
.faq-question {
  position: relative;
  width: 100%;
  padding: 19px 54px 19px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 22px;
}
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 24px 18px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin: 0; }

.site-footer {
  margin-top: 40px;
  padding: 46px 0 26px;
  border-top: 1px solid rgba(179,122,54,.08);
  background: rgba(255,253,248,.9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr 1fr 1.1fr;
  gap: 62px;
}
.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 16px;
}
.footer-grid p, .footer-grid a {
  display: block;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-contact { color: var(--ink) !important; }
.copyright { margin: 32px 0 0; text-align: center; color: var(--muted); font-size: 13px; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(28, 22, 17, .48);
  backdrop-filter: blur(10px);
}
.modal-overlay.active { display: flex; }
.modal {
  position: relative;
  width: min(100%, 430px);
  max-height: calc(100vh - 34px);
  overflow-y: auto;
  padding: 26px 28px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 34px 100px rgba(18, 12, 8, .24);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #f5eadb;
  color: var(--gold-dark);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.modal h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.08;
}
.modal form { display: grid; gap: 11px; }
.modal label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; }
.modal input,
.modal select {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: white;
  outline: none;
}
.modal select {
  appearance: none;
  cursor: pointer;
  background:
    linear-gradient(45deg, transparent 50%, var(--gold-dark) 50%) right 18px center / 7px 7px no-repeat,
    linear-gradient(135deg, var(--gold-dark) 50%, transparent 50%) right 12px center / 7px 7px no-repeat,
    white;
}
.modal input:focus,
.modal select:focus { border-color: rgba(179,122,54,.55); box-shadow: 0 0 0 4px rgba(179,122,54,.12); }
.promo-field { position: relative; }
.promo-field span { color: rgba(116,106,95,.72); font-size: 12px; font-weight: 500; }
.promo-hint {
  min-height: 14px;
  margin: -8px 0 0;
  color: var(--gold-dark);
  font-size: 12px;
  line-height: 1.3;
}
.promo-hint.error { color: #b84c3a; }
.modal-submit { margin-top: 2px; min-height: 48px; }
.modal-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  align-items: end;
  padding: 13px 15px;
  border: 1px solid rgba(179,122,54,.18);
  border-radius: 14px;
  background: #fff8ed;
}
.modal-total span { color: var(--muted); font-size: 12px; }
.modal-total strong {
  grid-row: span 2;
  align-self: center;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-dark);
  font-size: 27px;
  font-weight: 400;
}
.modal-total small { color: var(--muted); }

.status-page {
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
  padding: 72px 0;
}
.status-card {
  max-width: 780px;
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.status-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: #f7ead8;
}
.status-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.status-icon-error { background: #f8e5dd; }
.status-card h1 {
  max-width: 650px;
  margin: 0 auto 18px;
  font-size: clamp(38px, 5vw, 58px);
}
.status-card p {
  max-width: 610px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 17px;
}
.status-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 30px;
}
.status-steps span {
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  color: #3c332a;
  font-size: 14px;
}
.status-btn { display: inline-block; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; height: auto; padding: 18px 0; }
  .nav-links { order: 3; grid-column: 1 / -1; width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-story-card { grid-template-columns: 1fr 1fr; min-height: 560px; }
  .hero-showcase { display: contents; }
  .phone-reel { height: 560px; }
  .tariff-card, .steps-grid, .benefits-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .status-steps { grid-template-columns: 1fr; }
  .step-card:not(:last-child)::after { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1280px); }
  .header-cta { display: inline-flex; }
  .logo { font-size: 31px; }
  .nav-links { gap: 18px; font-size: 14px; }
  .hero-copy { padding: 34px 22px; }
  h1 { font-size: 42px; }
  .hero-cta { min-width: 100%; }
  .hero-story-card { grid-template-columns: 1fr; min-height: auto; border-radius: 0 0 26px 26px; }
  .hero-showcase { display: contents; }
  .phone-reel { height: 560px; max-width: 390px; width: 100%; margin: 0 auto; border-radius: 40px; }
  .coffee-card { min-height: 360px; border-radius: 0 0 24px 24px; }
  .tariff-card, .steps-grid, .benefits-grid, .footer-grid { grid-template-columns: 1fr; }
  .tariff-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .tariff-item:last-child { border-bottom: 0; }
  .section { padding: 26px 0 42px; }
}


.hero-note-secondary { margin-bottom: 34px; }

.footer-doc-link {
  display: block;
  width: fit-content;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}
.footer-doc-link:hover,
.legal-link:hover { color: var(--gold-dark); }

.legal-consents {
  display: grid;
  gap: 8px;
  padding: 2px 0 0;
}
.consent-row {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 9px !important;
  align-items: start;
  color: var(--muted);
  font-size: 12.5px !important;
  line-height: 1.3;
}
.consent-row input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--gold-bright);
}
.legal-link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  font: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
  cursor: pointer;
}

.legal-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(28, 22, 17, .54);
  backdrop-filter: blur(12px);
}
.legal-modal-overlay.active { display: flex; }
.legal-modal {
  position: relative;
  width: min(100%, 840px);
  max-height: min(86vh, 900px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 34px 100px rgba(18, 12, 8, .28);
}
.legal-modal-scroll {
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: clamp(30px, 5vw, 54px);
}
.legal-doc h2 {
  margin: 0 56px 20px 0;
  text-align: left;
  font-size: clamp(30px, 4vw, 44px);
}
.legal-doc h3 {
  margin: 26px 0 12px;
  color: var(--gold-dark);
  font-size: 17px;
  line-height: 1.35;
}
.legal-doc p {
  margin: 0 0 13px;
  color: #3f372f;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-story-card { grid-template-columns: 1fr 1fr; min-height: 560px; }
  .hero-showcase { --showcase-height: 560px; grid-template-columns: 1fr 1fr; padding-top: 0; }
  .phone-reel { height: 560px; }
}

@media (max-width: 640px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border-radius: 10px;
    font-size: 14px;
    white-space: nowrap;
  }
  .hero-story-card { grid-template-columns: 1fr; min-height: auto; border-radius: 0 0 26px 26px; }
  .coffee-card { min-height: 360px; border-radius: 0 0 24px 24px; }
  .hero-showcase { --showcase-height: 430px; grid-template-columns: 1fr; }
  .phone-reel { height: 560px; max-width: 390px; width: 100%; margin: 0 auto; border-radius: 40px; }
  .modal-overlay { align-items: center; overflow: auto; padding: 12px; }
  .modal { max-height: calc(100vh - 24px); padding: 22px 18px 18px; margin: 0; }
  .modal h2 { font-size: 26px; margin-bottom: 14px; }
  .modal form { gap: 9px; }
  .modal input,
  .modal select { height: 42px; }
  .legal-modal-overlay { align-items: flex-start; overflow: auto; padding: 16px 10px; }
  .legal-modal-scroll { max-height: 88vh; padding: 28px 18px; }
}

/* Hero coffee block alignment - 2026-06-18 */
.hero-grid {
  --hero-visual-height: clamp(560px, 47vw, 650px);
  min-height: var(--hero-visual-height);
  grid-template-columns: minmax(0, 1.46fr) minmax(300px, .54fr);
  align-items: stretch;
}

.hero-story-card {
  height: var(--hero-visual-height);
  min-height: 0;
  grid-template-columns: 1fr;
  isolation: isolate;
}

.hero-story-card .hero-copy {
  width: 100%;
  max-width: none;
  padding: clamp(46px, 6.4vw, 82px) clamp(28px, 5vw, 70px);
}

.hero-story-card h1 {
  max-width: min(73%, 760px);
  margin-bottom: clamp(26px, 3.4vw, 42px);
  position: relative;
  z-index: 3;
}

.hero-description {
  position: relative;
  z-index: 3;
  max-width: min(48%, 520px);
  margin: 0 0 34px;
  color: #50483f;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.65;
  letter-spacing: -.01em;
}

.hero-story-card .coffee-card {
  position: absolute;
  inset: 0 0 0 auto;
  width: 45%;
  min-height: 0;
  height: 100%;
  z-index: 1;
}

.hero-story-card .coffee-card img {
  object-fit: cover;
  object-position: center;
}

.hero-story-card .coffee-card::after {
  background:
    linear-gradient(90deg, rgba(255,253,248,.98) 0%, rgba(255,253,248,.88) 18%, rgba(255,253,248,.34) 48%, rgba(255,253,248,0) 78%),
    linear-gradient(180deg, rgba(255,253,248,0) 58%, rgba(255,253,248,.2) 100%);
}

.phone-reel {
  height: var(--hero-visual-height);
}

@media (max-width: 1180px) {
  .hero-story-card h1 { max-width: min(75%, 720px); }
  .hero-description { max-width: min(50%, 500px); }
  .hero-story-card .coffee-card { width: 44%; }
}

@media (max-width: 980px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-story-card {
    height: auto;
    min-height: 560px;
  }

  .hero-story-card h1 { max-width: min(76%, 720px); }
  .hero-description { max-width: min(52%, 520px); }
  .phone-reel { height: 560px; }
}

@media (max-width: 640px) {
  .hero-story-card {
    min-height: auto;
    height: auto;
    border-radius: 0 0 26px 26px;
  }

  .hero-story-card .hero-copy {
    padding: 34px 22px 30px;
  }

  .hero-story-card h1,
  .hero-description {
    max-width: 100%;
  }

  .hero-description {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-story-card .coffee-card {
    position: relative;
    width: 100%;
    height: 360px;
    min-height: 360px;
    border-radius: 0 0 24px 24px;
  }

  .hero-story-card .coffee-card::after {
    background: linear-gradient(180deg, rgba(255,253,248,.02), rgba(255,253,248,.52));
  }

  .phone-reel {
    height: 560px;
  }
}

/* Hero text split adjustment - 2026-06-18 */
.hero-story-card .coffee-line,
.hero-story-card .hero-note {
  position: relative;
  z-index: 3;
  max-width: min(48%, 520px);
  letter-spacing: -.01em;
}

.hero-story-card .coffee-line {
  margin: 0 0 24px;
  color: #50483f;
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.45;
}

.hero-story-card .hero-note {
  margin: 0 0 18px;
  color: #5f574e;
  font-size: clamp(15px, 1.12vw, 17px);
  line-height: 1.55;
}

.hero-story-card .hero-note-secondary {
  margin-bottom: 34px;
}

@media (max-width: 1180px) {
  .hero-story-card .coffee-line,
  .hero-story-card .hero-note { max-width: min(50%, 500px); }
}

@media (max-width: 980px) {
  .hero-story-card .coffee-line,
  .hero-story-card .hero-note { max-width: min(52%, 520px); }
}

@media (max-width: 640px) {
  .hero-story-card .coffee-line,
  .hero-story-card .hero-note { max-width: 100%; }
  .hero-story-card .coffee-line { margin-bottom: 18px; font-size: 17px; }
  .hero-story-card .hero-note { font-size: 15.5px; line-height: 1.6; }
}

/* Hero copy fit adjustment - 2026-06-18 */
.hero-story-card .hero-copy {
  justify-content: center;
  padding-top: clamp(38px, 5.2vw, 68px);
  padding-bottom: clamp(34px, 4.4vw, 58px);
}

.hero-story-card h1 {
  max-width: min(71%, 720px);
  margin-bottom: clamp(24px, 2.8vw, 34px);
}

.hero-story-card .coffee-line,
.hero-story-card .hero-note {
  max-width: min(46%, 500px);
}

.hero-story-card .coffee-line {
  margin-bottom: 22px;
}

.hero-story-card .hero-note {
  margin-bottom: 16px;
}

.hero-story-card .hero-note-secondary {
  margin-bottom: 30px;
}

.hero-story-card .hero-cta {
  margin-top: 0;
}

@media (max-width: 980px) {
  .hero-story-card h1 { max-width: min(76%, 720px); }
  .hero-story-card .coffee-line,
  .hero-story-card .hero-note { max-width: min(52%, 520px); }
}

@media (max-width: 640px) {
  .hero-story-card .hero-copy {
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .hero-story-card h1,
  .hero-story-card .coffee-line,
  .hero-story-card .hero-note {
    max-width: 100%;
  }
}

/* Hero clipping fix - 2026-06-18 */
.hero-story-card .hero-copy {
  padding-top: clamp(32px, 4.4vw, 54px);
  padding-bottom: clamp(28px, 3.6vw, 44px);
}

.hero-story-card h1 {
  font-size: clamp(42px, 4.45vw, 58px);
  line-height: 1;
  margin-bottom: clamp(22px, 2.2vw, 28px);
}

.hero-story-card .coffee-line {
  margin-bottom: 18px;
}

.hero-story-card .hero-note {
  margin-bottom: 14px;
}

.hero-story-card .hero-note-secondary {
  margin-bottom: 22px;
}

.hero-story-card .hero-cta {
  min-height: 58px;
}

@media (max-width: 640px) {
  .hero-story-card h1 { font-size: 42px; }
  .hero-story-card .hero-cta { min-height: 66px; }
}

/* Hero text unify and tariff align - 2026-06-18 */
.hero-story-card .coffee-line,
.hero-story-card .hero-note {
  max-width: min(46%, 500px);
  color: #5a5148;
  font-family: inherit;
  font-size: clamp(17px, 1.18vw, 18px);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: -.01em;
}

.hero-story-card .coffee-line {
  margin: 0 0 20px;
}

.hero-story-card .hero-note {
  margin: 0 0 16px;
}

.hero-story-card .hero-note-secondary {
  margin-bottom: 0;
}

.hero-story-card .hero-cta {
  display: none;
}

.tariff-card {
  width: 100%;
}

.tariff-item {
  min-width: 0;
}

.tariff-item strong,
.tariff-item span {
  max-width: 100%;
}

@media (max-width: 980px) {
  .hero-story-card .coffee-line,
  .hero-story-card .hero-note {
    max-width: min(52%, 520px);
  }
}

@media (max-width: 640px) {
  .hero-story-card .coffee-line,
  .hero-story-card .hero-note {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }
}

/* Mobile premium option 2 - 2026-06-19 */
@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 30;
  }

  .header-inner {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr auto;
    gap: 12px 14px;
    padding: 14px 0 12px;
  }

  .logo {
    font-size: clamp(28px, 9vw, 34px);
    letter-spacing: -.05em;
  }

  .header-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 15px;
    white-space: nowrap;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
    padding: 2px 0 0;
  }

  .nav-link {
    flex: 0 1 auto;
    font-size: clamp(13px, 3.85vw, 15px);
    white-space: nowrap;
  }

  .hero {
    padding: 18px 0 32px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 24px;
    overflow: visible;
  }

  .hero-story-card {
    order: 1;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-story-card .hero-copy {
    order: 1;
    padding: 0 4px 26px;
    justify-content: flex-start;
  }

  .hero-story-card .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero-story-card h1 {
    max-width: 100%;
    margin: 0 0 28px;
    font-size: clamp(42px, 12vw, 54px);
    line-height: .98;
    letter-spacing: -.055em;
  }

  .hero-story-card .coffee-line,
  .hero-story-card .hero-note {
    max-width: 100%;
    color: #5a5148;
    font-family: inherit;
    font-size: clamp(18px, 5vw, 21px);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -.015em;
  }

  .hero-story-card .coffee-line {
    margin: 0 0 24px;
  }

  .hero-story-card .hero-note {
    margin: 0 0 24px;
  }

  .hero-story-card .hero-note-secondary {
    margin-bottom: 0;
  }

  .hero-story-card .hero-cta {
    display: none !important;
  }

  .hero-story-card .coffee-card {
    order: 2;
    position: relative;
    width: 100%;
    height: min(86vw, 430px);
    min-height: 300px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 22px 60px rgba(76, 53, 25, .08);
  }

  .hero-story-card .coffee-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .hero-story-card .coffee-card::after {
    background: linear-gradient(180deg, rgba(255,253,248,.2), rgba(255,253,248,.08) 52%, rgba(255,253,248,.32));
  }

  .phone-reel {
    order: 2;
    width: min(78vw, 340px);
    height: auto;
    aspect-ratio: 9 / 18.75;
    max-height: none;
    margin: 4px auto 0;
    padding: 10px;
    border-radius: 42px;
  }

  .phone-screen {
    border-radius: 32px;
  }

  .phone-notch {
    top: 20px;
    width: 88px;
    height: 27px;
  }

  .reels-status {
    top: 18px;
    left: 22px;
    right: 16px;
    font-size: 13px;
  }

  .reels-topnav {
    top: 78px;
    left: 22px;
    right: 18px;
    font-size: 24px;
  }

  .reels-actions {
    right: 18px;
    bottom: 156px;
    gap: 5px;
  }

  .reels-action-icon {
    width: 28px;
    height: 28px;
  }

  .reels-actions small {
    font-size: 12px;
  }

  .reels-account {
    left: 22px;
    right: 22px;
    bottom: 70px;
    gap: 9px;
  }

  .reels-avatar {
    width: 44px;
    height: 44px;
  }

  .reels-name {
    max-width: 92px;
    font-size: 14px;
  }

  .reels-follow {
    padding: 7px 13px;
    font-size: 12px;
  }

  .reels-tabbar {
    height: 60px;
    padding: 0 26px 10px;
  }

  .reels-tabbar span {
    transform: scale(.82);
  }

  .phone-home {
    bottom: 15px;
    width: 86px;
  }

  .tariff-band {
    padding: 10px 0 46px;
  }

  .tariff-card {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
  }

  .tariff-item {
    min-height: 118px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .tariff-item:nth-child(2n) {
    border-right: 0;
  }

  .tariff-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .tariff-item strong {
    font-size: 20px;
  }

  .steps-grid,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .header-cta {
    padding-inline: 14px;
    font-size: 14px;
  }

  .nav-link {
    font-size: 13px;
  }

  .hero-story-card h1 {
    font-size: 39px;
  }

  .hero-story-card .coffee-line,
  .hero-story-card .hero-note {
    font-size: 17px;
  }
}
