:root {
  --bg: #0e0b09;
  --bg-2: #161210;
  --bg-3: #1e1914;
  --line: rgba(232, 201, 168, 0.14);
  --gold: #e8c9a8;
  --gold-2: #c9a27a;
  --gold-dim: #9a8b7a;
  --text: #f5ede3;
  --muted: #9a8b7a;
  --danger: #e07a5f;
  --ok: #7d9b76;
  --shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: var(--sans); }
body { min-height: 100dvh; overflow-x: hidden; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; }

.skip {
  position: absolute; left: 12px; top: -40px; z-index: 80;
  background: var(--gold); color: #1a120c; padding: 8px 12px; border-radius: 8px;
}
.skip:focus { top: 12px; }

.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; position: sticky; top: 0; z-index: 30;
  background: linear-gradient(180deg, rgba(14, 11, 9, .78), rgba(14, 11, 9, .28) 70%, transparent);
  backdrop-filter: saturate(1.4) blur(18px);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.word { font-family: var(--serif); letter-spacing: .16em; text-transform: uppercase; font-size: 13px; font-weight: 500; }
.nav { display: flex; gap: 22px; align-items: center; font-size: 14px; }
.nav a { color: var(--muted); transition: color .2s ease; }
.nav a:hover { color: var(--gold); }
.nav-cta {
  color: #1a120c !important; background: var(--gold); border-radius: 999px;
  padding: 8px 14px; font-weight: 560;
}

.hero {
  position: relative; min-height: min(92dvh, 920px);
  display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 55% 40%;
  transform: scale(1.06);
  animation: ken 28s ease-in-out infinite alternate;
}
@keyframes ken {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.4%, -1%, 0); }
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 11, 9, .78) 0%, rgba(14, 11, 9, .42) 46%, rgba(14, 11, 9, .08) 100%),
    linear-gradient(180deg, rgba(14, 11, 9, .18) 0%, transparent 28%, rgba(14, 11, 9, .72) 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  max-width: 1180px; width: 100%; margin: 0 auto;
  padding: 120px 32px 72px;
}
.kicker {
  color: var(--gold-2); letter-spacing: .22em; text-transform: uppercase;
  font-size: 11px; margin: 0;
}
h1, .display {
  font-family: var(--serif); font-weight: 500; letter-spacing: -0.035em;
  font-size: clamp(42px, 6.4vw, 84px); line-height: .94; margin: 14px 0 18px;
}
h1 em { color: var(--gold); font-style: italic; font-weight: 460; }
h2 {
  font-family: var(--serif); font-weight: 500; letter-spacing: -0.03em;
  font-size: clamp(30px, 4vw, 52px); line-height: 1.04; margin: 10px 0 12px;
}
.lede { color: rgba(245, 237, 227, .78); font-size: 18px; line-height: 1.55; max-width: 38ch; }
.cta-row { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

.pair { display: flex; align-items: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.pair-chip {
  border: 1px solid var(--line); background: rgba(14, 11, 9, .45);
  backdrop-filter: blur(10px);
  border-radius: 999px; padding: 10px 16px; font-family: var(--serif);
  font-size: 18px; min-width: 8ch; text-align: center;
}
.pair-chip.to { color: var(--gold); }
.pair-arrow { display: inline-flex; align-items: flex-end; gap: 3px; height: 22px; }
.pair-arrow i {
  width: 3px; background: var(--gold); border-radius: 2px; display: block;
  animation: bar 1.1s ease-in-out infinite; opacity: .85;
}
.pair-arrow i:nth-child(1) { animation-delay: 0s; height: 8px; }
.pair-arrow i:nth-child(2) { animation-delay: .1s; height: 14px; }
.pair-arrow i:nth-child(3) { animation-delay: .2s; height: 20px; }
.pair-arrow i:nth-child(4) { animation-delay: .3s; height: 12px; }
.pair-arrow i:nth-child(5) { animation-delay: .4s; height: 16px; }
.pair-caption { color: var(--muted); font-size: 14px; margin: 10px 0 0; }
.pair-caption b { color: var(--text); font-weight: 560; }

.btn {
  border: 0; border-radius: 999px; padding: 13px 20px; background: var(--gold); color: #1a120c;
  font-weight: 560; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(232, 201, 168, 0.22); }
.btn:active { transform: translateY(0) scale(.98); }
.btn.ghost { background: transparent; color: var(--gold); border: 1px solid var(--line); }
.btn.ghost:hover { border-color: var(--gold-2); background: rgba(232, 201, 168, .06); }
.btn.danger { background: #3a1d16; color: #f0c2b4; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.stats {
  max-width: 1100px; margin: -36px auto 0; padding: 0 32px 10px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  position: relative; z-index: 3;
}
.stats > div {
  border: 1px solid var(--line); border-radius: 20px; padding: 20px 16px;
  background: rgba(22, 18, 16, .72);
  backdrop-filter: blur(16px);
}
.stats b {
  display: block; font-family: var(--serif); font-size: 28px; letter-spacing: -0.03em;
  color: var(--gold); font-weight: 500;
}
.stats span { color: var(--muted); font-size: 13px; }

.section { max-width: 1100px; margin: 0 auto; padding: 88px 32px 40px; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head .lede { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: linear-gradient(180deg, rgba(30, 25, 20, .9), rgba(22, 18, 16, .78));
  border: 1px solid var(--line); border-radius: 22px; padding: 26px 22px;
  transition: transform .35s ease, border-color .35s ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(232, 201, 168, .32); }
.card h3 { font-family: var(--serif); font-weight: 500; margin: 0 0 8px; font-size: 26px; }
.muted { color: var(--muted); }
.price { font-family: var(--serif); font-size: 40px; margin: 10px 0; letter-spacing: -0.03em; font-weight: 500; }
.price span { font-size: 16px; color: var(--muted); }

.lang-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 10px;
}
.lang {
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
  column-gap: 10px; row-gap: 1px;
  border: 1px solid var(--line); border-radius: 16px; padding: 13px 12px;
  background: rgba(22, 18, 16, 0.7);
  transition: transform .25s ease, border-color .25s ease;
}
.lang:hover { border-color: rgba(232, 201, 168, 0.38); transform: translateY(-2px); }
.lang .iso {
  grid-row: 1 / span 2; align-self: center;
  font-size: 11px; letter-spacing: .12em; color: var(--gold-2);
  border: 1px solid var(--line); border-radius: 8px;
  padding: 6px; min-width: 34px; text-align: center; font-weight: 560;
}
.lang strong { font-size: 14px; font-weight: 560; }
.lang em { font-style: normal; font-size: 12px; color: var(--muted); }
.lang em:empty { display: none; }

.film { max-width: 1180px; margin: 40px auto 0; padding: 0 32px 20px; }
.film-frame {
  margin: 0; border-radius: 28px; overflow: hidden; position: relative;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.film-frame img { width: 100%; height: min(68vh, 640px); object-fit: cover; }
.film-frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 48px 32px 28px;
  background: linear-gradient(180deg, transparent, rgba(14, 11, 9, .82));
}
.film-frame h2 { margin: 0 0 6px; }
.film-frame p { margin: 0; color: var(--muted); }

.faq { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.faq details {
  border: 1px solid var(--line); border-radius: 16px; padding: 4px 18px;
  background: rgba(22, 18, 16, 0.7);
}
.faq summary {
  cursor: pointer; padding: 16px 0; font-weight: 560; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold-2); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 0 0 16px; color: var(--muted); line-height: 1.55; }

.foot {
  max-width: 1100px; margin: 0 auto; padding: 48px 32px 88px;
  display: flex; flex-direction: column; gap: 10px;
}
.foot-brand { display: flex; align-items: center; gap: 10px; }
.foot-brand img { border-radius: 7px; }
.foot-brand p { margin: 2px 0 0; font-size: 13px; }

.reveal {
  animation: rise .8s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.app-shell {
  max-width: 980px; margin: 0 auto; padding: 12px 20px 80px;
  display: grid; grid-template-columns: 280px 1fr; gap: 20px;
}
.side, .main {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 22px; padding: 22px;
}
.side h2, .main h2 { font-family: var(--serif); font-weight: 500; margin: 0 0 6px; font-size: 28px; }
label { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dim); margin: 14px 0 6px; }
input, select, textarea {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 12px; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: rgba(232, 201, 168, 0.45); }
textarea { min-height: 120px; resize: vertical; line-height: 1.45; }
.row { display: flex; gap: 8px; }
.row > * { flex: 1; }
.pill {
  display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 10px; color: var(--muted); font-size: 13px;
}
.pill b { color: var(--gold); font-weight: 560; }
.err { color: var(--danger); font-size: 14px; min-height: 1.2em; }
.ok { color: var(--ok); font-size: 14px; min-height: 1.2em; }
.auth-or {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 16px 0 10px;
}
.otp {
  letter-spacing: .42em;
  font-size: 22px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.voice-hint {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-3);
}
.voice-hint .btn { margin-top: 10px; }
.voice-advanced {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.voice-advanced summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}
.voice-advanced summary::-webkit-details-marker { display: none; }

.call { min-height: 420px; display: flex; flex-direction: column; gap: 16px; }
.wave {
  height: 88px; border-radius: 16px; background:
    radial-gradient(80% 80% at 50% 120%, rgba(232, 201, 168, .16), transparent 60%),
    var(--bg-3);
  border: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: center; gap: 4px;
  padding: 16px;
}
.wave i {
  width: 4px; border-radius: 4px; background: var(--gold); display: block;
  animation: bar 1.1s ease-in-out infinite; opacity: .75;
}
.wave.live i { opacity: 1; }
@keyframes bar {
  0%, 100% { height: 10px; }
  50% { height: 42px; }
}
.wave i:nth-child(odd) { animation-delay: .15s; }
.caps { display: flex; flex-direction: column; gap: 10px; min-height: 160px; }
.cap {
  border-radius: 14px; padding: 12px 14px; background: var(--bg-3); border: 1px solid var(--line);
}
.cap .who { font-size: 12px; color: var(--gold-2); letter-spacing: .08em; text-transform: uppercase; }
.cap .src { color: var(--muted); font-size: 14px; margin-top: 4px; }
.cap .dst { font-size: 18px; margin-top: 2px; }

.hidden { display: none !important; }
.legal-wrap { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; line-height: 1.65; position: relative; z-index: 1; }
.legal-wrap h1 { font-family: var(--serif); font-size: clamp(34px, 5vw, 52px); }
.legal-wrap h2 { font-size: 22px; margin: 28px 0 10px; }
.legal-wrap ul { padding-left: 1.2em; color: var(--muted); }
.legal-wrap li { margin: 6px 0; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 12px 16px; margin: 18px 0 28px; font-size: 14px; }
.legal-nav a { color: var(--muted); }
.legal-nav a:hover { color: var(--gold); }

@media (max-width: 860px) {
  .app-shell, .grid-3, .stats { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: 16px; }
  .top { padding: 14px 16px; }
  .nav { gap: 12px; font-size: 13px; }
  .nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 88dvh; }
  .hero-copy { padding: 88px 18px 40px; }
  .section { padding: 64px 16px 28px; }
  .film { padding: 0 16px; }
  .film-frame img { height: 52vh; }
  .foot { padding: 32px 16px 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img, .pair-arrow i, .wave i, .reveal { animation: none; }
}
