:root {
  --black: #050505;
  --black-2: #0c0906;
  --ink: #120d08;
  --panel: rgba(16, 13, 9, 0.78);
  --panel-2: rgba(255, 255, 255, 0.055);
  --gold: #d9ad58;
  --gold-light: #f6d98d;
  --gold-dark: #8f6628;
  --text: #fff7e8;
  --muted: #bdb2a0;
  --line: rgba(246, 217, 141, 0.18);
  --line-strong: rgba(246, 217, 141, 0.36);
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(217, 173, 88, 0.14), transparent 66%),
    radial-gradient(760px 380px at 96% 8%, rgba(246, 217, 141, 0.08), transparent 60%),
    var(--black);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
body::before {
  opacity: 0.9;
  background: var(--page-ambient);
  animation: ambientShift 18s ease-in-out infinite alternate;
}
body::after {
  opacity: 0.42;
  background: var(--page-lines);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.92), rgba(0,0,0,0.22) 72%, transparent);
  animation: lineDrift 24s linear infinite;
}
.page-home {
  --page-ambient:
    radial-gradient(720px 360px at 72% 12%, rgba(246, 217, 141, 0.12), transparent 66%),
    radial-gradient(560px 360px at 16% 82%, rgba(217, 173, 88, 0.1), transparent 70%);
  --page-lines:
    linear-gradient(115deg, transparent 0 45%, rgba(246,217,141,0.22) 46%, transparent 47% 100%),
    repeating-linear-gradient(90deg, rgba(246,217,141,0.06) 0 1px, transparent 1px 96px);
}
.page-offers {
  --page-ambient:
    radial-gradient(620px 420px at 16% 18%, rgba(246, 217, 141, 0.17), transparent 68%),
    radial-gradient(520px 360px at 92% 62%, rgba(143, 102, 40, 0.18), transparent 70%);
  --page-lines:
    repeating-linear-gradient(0deg, rgba(246,217,141,0.07) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(90deg, rgba(246,217,141,0.045) 0 1px, transparent 1px 84px);
}
.page-about {
  --page-ambient:
    radial-gradient(680px 460px at 50% 8%, rgba(246, 217, 141, 0.14), transparent 64%),
    radial-gradient(500px 420px at 8% 70%, rgba(217, 173, 88, 0.08), transparent 70%);
  --page-lines:
    linear-gradient(135deg, transparent 0 40%, rgba(246,217,141,0.16) 41%, transparent 42% 100%),
    linear-gradient(45deg, transparent 0 54%, rgba(246,217,141,0.1) 55%, transparent 56% 100%);
}
.page-contact {
  --page-ambient:
    radial-gradient(620px 430px at 88% 16%, rgba(246, 217, 141, 0.18), transparent 66%),
    radial-gradient(540px 360px at 18% 76%, rgba(217, 173, 88, 0.11), transparent 70%);
  --page-lines:
    repeating-radial-gradient(circle at 82% 18%, rgba(246,217,141,0.13) 0 1px, transparent 1px 28px),
    linear-gradient(120deg, transparent 0 44%, rgba(246,217,141,0.14) 45%, transparent 46% 100%);
}
main,
.site-footer {
  position: relative;
  z-index: 1;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 62px);
  background: rgba(5, 5, 5, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: 0.2s ease;
}
.site-header.is-scrolled { background: rgba(5, 5, 5, 0.9); border-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; }
.brand-word {
  position: relative;
  color: transparent;
  background: linear-gradient(105deg, #fff7e8 0%, var(--gold-light) 42%, #fff7e8 72%, #9d7a39 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(246, 217, 141, 0.12);
  animation: brandSheen 5.5s ease-in-out infinite;
}
.brand-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.08em;
  bottom: -7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 217, 141, 0.8), transparent);
  box-shadow: 0 0 14px rgba(246, 217, 141, 0.36);
  transform: scaleX(0.72);
  opacity: 0.8;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.brand:hover .brand-word::after {
  transform: scaleX(1);
  opacity: 1;
}
.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  border: 0;
  box-shadow: none;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.site-nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 14px; font-weight: 800; }
.site-nav a:hover, .site-nav .is-active { color: var(--gold-light); }
.nav-cta {
  position: relative;
  overflow: hidden;
  padding: 10px 14px;
  color: var(--ink) !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 440px);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  overflow: hidden;
  padding: 126px clamp(18px, 7vw, 96px) 64px;
  isolation: isolate;
  perspective: 1400px;
}
.hero-bg, .hero-shade { position: absolute; inset: 0; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; animation: heroDrift 18s ease-in-out infinite alternate; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.78) 48%, rgba(5, 5, 5, 0.36) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), #050505 96%);
}
.energy-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.energy-lines span {
  position: absolute;
  left: -18%;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 217, 141, 0.9), transparent);
  box-shadow: 0 0 26px rgba(246, 217, 141, 0.46);
  transform: rotate(-18deg);
  animation: lightTrace 6.5s linear infinite;
}
.energy-lines span:nth-child(1) { top: 22%; animation-delay: -1.2s; }
.energy-lines span:nth-child(2) { top: 52%; animation-delay: -3.8s; animation-duration: 8s; }
.energy-lines span:nth-child(3) { top: 78%; animation-delay: -5s; animation-duration: 7.2s; }
.hero-content, .hero-dashboard { position: relative; z-index: 1; }
.hero-content,
.hero-dashboard,
.section-head,
.rich-text,
.split > *,
.manifesto > *,
.contact-layout > *,
.feature-card,
.price-card,
.mini-pricing article {
  min-width: 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p, a, span, strong, li, label, button {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-content h1 {
  color: transparent;
  background: linear-gradient(105deg, #fff7e8 0%, #fff7e8 36%, var(--gold-light) 49%, #fff7e8 62%, #d7c9b2 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: titleSheen 7s ease-in-out infinite;
  text-shadow: 0 0 42px rgba(246, 217, 141, 0.08);
}
.page-hero h1,
.section-head h2,
.split h2,
.manifesto h2,
.contact-copy h1,
.security-band h2,
.final-cta h2 {
  position: relative;
  display: inline-block;
  color: transparent;
  background:
    linear-gradient(105deg, #fff7e8 0%, #fff7e8 34%, #f6d98d 50%, #e6d3b4 68%, #fff7e8 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: titleSheen 8s ease-in-out infinite;
}
.page-hero h1::after,
.section-head h2::after,
.split h2::after,
.manifesto h2::after,
.contact-copy h1::after,
.security-band h2::after,
.final-cta h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: min(220px, 58%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), rgba(246, 217, 141, 0));
  box-shadow: 0 0 24px rgba(246, 217, 141, 0.34);
  transform-origin: left;
  animation: underlinePulse 4.5s ease-in-out infinite;
}
.final-cta h2::after {
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  animation: underlinePulseCenter 4.5s ease-in-out infinite;
}
h2 {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}
h3 { margin: 0; font-size: clamp(20px, 2.3vw, 22px); line-height: 1.18; text-wrap: balance; }
.feature-card h3,
.price-card h2,
.price-card h3,
.mini-pricing h3,
.timeline h3 {
  color: #fff7e8;
  text-shadow: 0 0 22px rgba(246, 217, 141, 0.12);
}
.feature-card h3::first-letter,
.price-card h2::first-letter,
.price-card h3::first-letter,
.mini-pricing h3::first-letter,
.timeline h3::first-letter {
  color: var(--gold-light);
}
.hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: #e9ddca;
  font-size: clamp(19px, 2.3vw, 28px);
  line-height: 1.32;
  font-weight: 650;
}
.hero-actions, .center-action { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.center-action { justify-content: center; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: normal;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.btn::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: -60% -40%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.42) 50%, transparent 70%);
  transform: translateX(-120%) rotate(10deg);
  transition: transform 0.7s ease;
}
.btn:hover::before,
.nav-cta:hover::before {
  transform: translateX(120%) rotate(10deg);
}
.btn > *, .nav-cta { position: relative; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-gold { color: var(--ink); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 18px 46px rgba(217, 173, 88, 0.24); }
.btn-glass { color: var(--text); background: rgba(255, 255, 255, 0.07); border-color: var(--line); }

.hero-dashboard {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  animation: dashboardFloat 7s ease-in-out infinite;
}
.hero-phone-showcase {
  width: min(100%, 470px);
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  animation: none;
  transform: none;
}
.dashboard-top { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 13px; }
.dashboard-top strong { color: var(--gold-light); }
.metric-list { display: grid; gap: 10px; }
.metric-list div, .contact-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(246, 217, 141, 0.13);
}
.metric-list svg, .contact-points svg { color: var(--gold-light); flex: 0 0 auto; }

.section, .final-cta, .page-hero, .contact-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.section { padding: 104px 0; }
.page-main { padding-top: 92px; }
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.72;
  background: var(--page-hero-effect);
  animation: pageGlowMove 14s ease-in-out infinite alternate;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-offers {
  --page-hero-effect:
    radial-gradient(360px 180px at 18% 24%, rgba(246,217,141,0.18), transparent 70%),
    linear-gradient(115deg, transparent 0 58%, rgba(246,217,141,0.12) 59%, transparent 60%);
}
.page-about {
  --page-hero-effect:
    radial-gradient(420px 220px at 50% 18%, rgba(246,217,141,0.14), transparent 72%),
    repeating-linear-gradient(135deg, rgba(246,217,141,0.08) 0 1px, transparent 1px 42px);
}
.page-contact {
  --page-hero-effect:
    radial-gradient(400px 220px at 86% 20%, rgba(246,217,141,0.18), transparent 70%),
    repeating-radial-gradient(circle at 82% 20%, rgba(246,217,141,0.08) 0 1px, transparent 1px 34px);
}
.page-hero p { max-width: 800px; color: var(--muted); font-size: 20px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin-top: -22px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.trust-strip div, .facts div {
  min-height: 120px;
  padding: 24px;
  background: rgba(10, 8, 6, 0.92);
}
.trust-strip strong, .facts strong { display: block; color: var(--gold-light); font-size: 30px; line-height: 1; }
.trust-strip span, .facts span { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; }
.split, .manifesto, .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}
.rich-text p, .section-head p, .feature-card p, .price-card p, .mini-pricing p, .security-band p, .contact-copy p {
  color: var(--muted);
}
.rich-text p { margin: 0 0 18px; font-size: 18px; }
.section-head { max-width: 850px; margin-bottom: 38px; }
.feature-grid, .pricing-grid, .mini-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card, .price-card, .mini-pricing article, .contact-form {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
  border: 1px solid rgba(246,217,141,0.15);
  box-shadow: 0 18px 60px rgba(0,0,0,0.24);
}
.feature-card { min-height: 275px; padding: 30px; }
.feature-card svg { width: 36px; height: 36px; color: var(--gold-light); margin-bottom: 28px; }
.feature-card p { margin: 13px 0 0; }
.offer-preview { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-card { position: relative; min-height: 360px; padding: 28px; }
.price-card.is-featured, .mini-pricing .is-featured {
  border-color: var(--line-strong);
  background:
    radial-gradient(360px 220px at 20% 0%, rgba(246,217,141,0.18), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.035));
}
.tag {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--gold-light);
  background: rgba(246, 217, 141, 0.1);
  border: 1px solid rgba(246, 217, 141, 0.15);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.price-card h2, .price-card h3 { margin: 24px 0 12px; }
.price-card strong, .mini-pricing strong, .big-price strong {
  display: block;
  color: var(--gold-light);
  font-size: 42px;
  line-height: 1;
}
.price-card p { margin: 18px 0 0; }
.check-list { margin: 24px 0 0; padding: 0; list-style: none; color: #eadfce; }
.check-list li { position: relative; padding-left: 24px; margin-top: 10px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.68em; width: 8px; height: 8px; background: var(--gold-light); }
.process { border-bottom: 1px solid var(--line); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.timeline div {
  padding: 26px;
  border-top: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.035);
}
.timeline span { color: var(--gold-light); font-weight: 900; }
.timeline h3 { margin: 18px 0 10px; }
.timeline p { margin: 0; color: var(--muted); }
.mini-pricing article { padding: 26px; min-height: 250px; }
.mini-pricing h3 { margin-bottom: 14px; }
.mini-pricing strong { font-size: 30px; }
.security-band {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.42fr);
  gap: 38px;
  align-items: center;
  padding: 52px;
  background: linear-gradient(135deg, rgba(217,173,88,0.18), rgba(255,255,255,0.04));
  border: 1px solid var(--line-strong);
}
.check-list.inline { columns: 2; }
.big-price {
  padding: 28px;
  text-align: center;
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--line);
}
.big-price span { display: block; color: var(--muted); margin-bottom: 12px; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding: 0; background: var(--line); border: 1px solid var(--line); }
.manifesto-list { display: grid; gap: 12px; }
.manifesto-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
}
.manifesto-list span { color: var(--gold-light); font-weight: 900; }
.manifesto-list p { margin: 0; color: var(--text); }
.contact-layout { padding: 110px 0 72px; }
.contact-copy h1 { font-size: clamp(46px, 6vw, 76px); }
.contact-copy p { max-width: 640px; font-size: 19px; }
.contact-points { display: grid; gap: 12px; margin-top: 30px; }
.contact-form { display: grid; gap: 16px; padding: 26px; }
.contact-form label { display: grid; gap: 8px; color: var(--gold-light); font-size: 13px; font-weight: 900; }
.contact-form input, .contact-form textarea {
  width: 100%;
  color: var(--text);
  background: rgba(0,0,0,0.26);
  border: 1px solid rgba(246,217,141,0.2);
  outline: 0;
  padding: 14px;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold-light); }
.contact-form button { width: max-content; cursor: pointer; }
.final-cta {
  margin-top: 48px;
  margin-bottom: 86px;
  padding: clamp(38px, 7vw, 78px);
  text-align: center;
  background:
    radial-gradient(420px 240px at 50% 0%, rgba(246,217,141,0.19), transparent 72%),
    rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.final-cta h2 { max-width: 900px; margin: 0 auto 28px; }
.final-cta .btn { margin: 0 auto; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(18px, 4vw, 62px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer div { display: flex; gap: 18px; }
.site-footer a { color: var(--gold-light); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.phone-orbit {
  position: relative;
  width: min(100%, 390px);
  height: 540px;
  display: grid;
  place-items: center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 2200px;
  perspective: 2200px;
}
.phone-orbit::after {
  content: "";
  position: absolute;
  bottom: 34px;
  left: 50%;
  width: 260px;
  height: 74px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18) 42%, transparent 72%);
  filter: blur(7px);
  transform: translateX(-50%) rotate(-12deg);
  pointer-events: none;
  z-index: 0;
}
.phone-halo {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(6px);
  z-index: 0;
}
.halo-one {
  width: 310px;
  height: 310px;
  background: radial-gradient(circle, rgba(246, 217, 141, 0.2), transparent 68%);
  animation: haloPulse 5s ease-in-out infinite;
}
.halo-two {
  width: 420px;
  height: 180px;
  border: 1px solid rgba(246, 217, 141, 0.28);
  transform: rotate(-24deg);
  box-shadow: 0 0 46px rgba(246, 217, 141, 0.12);
  animation: haloRotate 11s linear infinite;
}
.phone-device {
  --scroll-rotate: 0deg;
  --phone-depth: 24px;
  --phone-z: -10deg;
  --phone-y: -12deg;
  --phone-x: 1deg;
  position: relative;
  width: 238px;
  height: 480px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotateZ(var(--phone-z)) rotateY(calc(var(--phone-y) + var(--scroll-rotate))) rotateX(var(--phone-x));
  transform: rotateZ(var(--phone-z)) rotateY(calc(var(--phone-y) + var(--scroll-rotate))) rotateX(var(--phone-x));
  transition: none;
  will-change: transform;
  z-index: 1;
}
.phone-front,
.phone-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  background-color: #050505;
}
.phone-front {
  -webkit-transform: translateZ(calc(var(--phone-depth) / 2));
  transform: translateZ(calc(var(--phone-depth) / 2));
}
.phone-back {
  display: block;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(160px 140px at 28% 18%, rgba(246,217,141,0.18), transparent 68%),
    linear-gradient(145deg, #17130e 0%, #070706 48%, #11100e 100%);
  background-color: #070706;
  border: 1px solid rgba(246, 217, 141, 0.2);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.035),
    inset 0 0 36px rgba(246,217,141,0.08),
    0 0 44px rgba(217,173,88,0.08);
  -webkit-transform: rotateY(180deg) translateZ(calc(var(--phone-depth) / 2));
  transform: rotateY(180deg) translateZ(calc(var(--phone-depth) / 2));
}
.phone-back::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.12), transparent 16% 82%, rgba(246,217,141,0.11)),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.12), transparent 22%);
  pointer-events: none;
  opacity: 0.8;
}
.phone-back::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 29px;
  border: 1px solid rgba(246,217,141,0.11);
  background:
    linear-gradient(125deg, rgba(255,255,255,0.09), transparent 34%),
    repeating-linear-gradient(90deg, rgba(246,217,141,0.05) 0 1px, transparent 1px 34px);
}
.camera-island {
  position: absolute;
  top: 26px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(2, 38px);
  grid-auto-rows: 38px;
  gap: 9px;
  padding: 10px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(135deg, #191511, #050505);
  background-color: #050505;
  border: 1px solid rgba(246,217,141,0.22);
  box-shadow: 8px 12px 22px rgba(0,0,0,0.36), inset 0 0 18px rgba(246,217,141,0.08);
  -webkit-transform: translateZ(18px);
  transform: translateZ(18px);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 2;
}
.camera-island::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 29px;
  background: linear-gradient(145deg, rgba(246,217,141,0.22), rgba(255,255,255,0.04) 32%, rgba(0,0,0,0.42));
  -webkit-transform: translateZ(-7px);
  transform: translateZ(-7px);
  box-shadow: 11px 14px 22px rgba(0,0,0,0.34);
}
.camera-lens,
.camera-flash {
  display: block;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}
.camera-lens {
  background:
    radial-gradient(circle at 38% 34%, rgba(255,255,255,0.75) 0 5%, transparent 6%),
    radial-gradient(circle, #151515 0 34%, #020202 35% 55%, #3b2a0d 56% 64%, #050505 65% 100%);
  border: 2px solid rgba(246,217,141,0.24);
  box-shadow: inset 0 0 12px rgba(0,0,0,0.9), 0 0 16px rgba(246,217,141,0.12);
  -webkit-transform: translateZ(8px);
  transform: translateZ(8px);
}
.camera-flash {
  width: 16px;
  height: 16px;
  align-self: center;
  justify-self: center;
  background: radial-gradient(circle, #fff8cf 0 16%, #d9ad58 17% 42%, #1a1309 43% 100%);
  box-shadow: 0 0 14px rgba(246,217,141,0.38);
  -webkit-transform: translateZ(7px);
  transform: translateZ(7px);
}
.phone-back-lines {
  position: absolute;
  left: 28px;
  right: 26px;
  bottom: 105px;
  display: grid;
  gap: 10px;
  z-index: 2;
}
.phone-back-lines span {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(246,217,141,0.5), rgba(246,217,141,0.08));
}
.phone-back-lines span:nth-child(2) { width: 72%; }
.phone-back-lines span:nth-child(3) { width: 48%; }
.phone-edge {
  position: absolute;
  background: linear-gradient(180deg, #1b1710, #050505 48%, #15110b);
  box-shadow: inset 0 0 18px rgba(246,217,141,0.05);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  overflow: hidden;
}
.phone-edge-left,
.phone-edge-right {
  top: 38px;
  width: var(--phone-depth);
  height: calc(100% - 76px);
  border-radius: 14px;
}
.phone-edge-left {
  left: calc(var(--phone-depth) / -2);
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}
.phone-edge-right {
  right: calc(var(--phone-depth) / -2);
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
}
.phone-edge-left::before,
.phone-edge-right::before {
  content: "";
  position: absolute;
  top: 78px;
  width: 5px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(246,217,141,0.45), rgba(75,57,23,0.78));
  box-shadow: 0 0 12px rgba(246,217,141,0.12);
}
.phone-edge-left::before { right: 9px; }
.phone-edge-right::before { left: 9px; }
.phone-edge-top,
.phone-edge-bottom {
  left: 38px;
  width: calc(100% - 76px);
  height: var(--phone-depth);
  border-radius: 14px;
  background: linear-gradient(90deg, #1b1710, #050505 48%, #15110b);
}
.phone-edge-top {
  top: calc(var(--phone-depth) / -2);
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
}
.phone-edge-bottom {
  bottom: calc(var(--phone-depth) / -2);
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}
.phone-frame {
  position: absolute;
  inset: 0;
  padding: 13px;
  border-radius: 38px;
  background-color: #050505;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), transparent 22%),
    linear-gradient(135deg, #020202, #14110d 48%, #050505);
  background-color: #050505;
  border: 1px solid rgba(246, 217, 141, 0.2);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.045),
    inset 0 0 34px rgba(246, 217, 141, 0.05),
    0 0 52px rgba(217, 173, 88, 0.12);
}
.phone-frame::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 31px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,0.16) 45%, transparent 56% 100%);
  opacity: 0.75;
  animation: phoneGlass 5.5s ease-in-out infinite;
}
.phone-speaker {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 62px;
  height: 6px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.14);
  z-index: 3;
}
.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 24px 16px 16px;
  border-radius: 28px;
  background-color: #050505;
  background:
    radial-gradient(140px 120px at 78% 18%, rgba(246, 217, 141, 0.22), transparent 70%),
    linear-gradient(180deg, #0a0908, #050505 64%, #0d0a06);
  background-color: #050505;
  border: 1px solid rgba(246, 217, 141, 0.14);
}
.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    repeating-linear-gradient(90deg, rgba(246,217,141,0.08) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(0deg, rgba(246,217,141,0.05) 0 1px, transparent 1px 32px);
  animation: phoneGridMove 9s linear infinite;
}
.phone-screen > * {
  position: relative;
  z-index: 1;
}
.phone-status,
.phone-brand {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}
.phone-status {
  color: rgba(255,247,232,0.68);
  font-size: 11px;
  font-weight: 800;
}
.phone-brand {
  margin-top: 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
}
.phone-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.phone-hero-card {
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(246,217,141,0.14), rgba(255,255,255,0.035));
  border: 1px solid rgba(246,217,141,0.18);
}
.phone-hero-card span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.phone-hero-card h3 {
  margin: 10px 0 8px;
  font-size: 23px;
  line-height: 1;
}
.phone-hero-card p {
  margin: 0;
  color: rgba(255,247,232,0.68);
  font-size: 11px;
  line-height: 1.45;
}
.phone-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.phone-metrics div {
  padding: 12px;
  border-radius: 15px;
  background: rgba(0,0,0,0.34);
  border: 1px solid rgba(246,217,141,0.12);
}
.phone-metrics strong,
.phone-metrics span {
  display: block;
}
.phone-metrics strong {
  color: var(--gold-light);
  font-size: 18px;
  line-height: 1;
}
.phone-metrics span {
  margin-top: 5px;
  color: rgba(255,247,232,0.62);
  font-size: 10px;
}
.phone-bars {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.phone-bars span {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.phone-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 16px rgba(246,217,141,0.28);
  animation: barBreathe 3.2s ease-in-out infinite;
}
.phone-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 14px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 16px;
  font-size: 12px;
  font-weight: 900;
}
.phone-cta svg {
  width: 16px;
  height: 16px;
}

.interactive-surface {
  isolation: isolate;
}
.interactive-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(246, 217, 141, 0.18), transparent 58%);
  transition: opacity 0.25s ease;
}
.interactive-surface:hover::before {
  opacity: 1;
}
.interactive-surface > * {
  position: relative;
  z-index: 1;
}
.feature-card,
.price-card,
.mini-pricing article,
.timeline div,
.trust-strip div,
.facts div,
.contact-points div {
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.feature-card:hover,
.price-card:hover,
.mini-pricing article:hover,
.timeline div:hover,
.trust-strip div:hover,
.facts div:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), 0 0 42px rgba(217, 173, 88, 0.08);
}
.tag,
.eyebrow {
  animation: microGlow 3.8s ease-in-out infinite;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); filter: saturate(1); }
  to { transform: scale(1.09) translate3d(1.8%, -1.6%, 0); filter: saturate(1.15); }
}
@keyframes lightTrace {
  from { transform: translateX(-20%) rotate(-18deg); opacity: 0; }
  12% { opacity: 1; }
  70% { opacity: 0.8; }
  to { transform: translateX(235%) rotate(-18deg); opacity: 0; }
}
@keyframes titleSheen {
  0%, 18% { background-position: 120% 0; }
  55%, 100% { background-position: -120% 0; }
}
@keyframes brandSheen {
  0%, 22% { background-position: 120% 0; }
  62%, 100% { background-position: -120% 0; }
}
@keyframes underlinePulse {
  0%, 100% { opacity: 0.52; transform: scaleX(0.74); }
  50% { opacity: 1; transform: scaleX(1); }
}
@keyframes underlinePulseCenter {
  0%, 100% { opacity: 0.52; transform: translateX(-50%) scaleX(0.74); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1); }
}
@keyframes dashboardFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
  50% { transform: translate3d(0, -12px, 0) rotateX(calc(var(--tilt-x) + 2deg)) rotateY(calc(var(--tilt-y) - 3deg)); }
}
@keyframes spinFlat {
  to { transform: rotate(360deg); }
}
@keyframes microGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(246, 217, 141, 0); }
  50% { text-shadow: 0 0 18px rgba(246, 217, 141, 0.34); }
}
@keyframes ambientShift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); filter: saturate(1); }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.05); filter: saturate(1.15); }
}
@keyframes lineDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-90px, 70px, 0); }
}
@keyframes pageGlowMove {
  from { transform: translate3d(-18px, -8px, 0) scale(1); }
  to { transform: translate3d(22px, 12px, 0) scale(1.04); }
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 0.9; transform: scale(1.08); }
}
@keyframes haloRotate {
  from { transform: rotate(-24deg); }
  to { transform: rotate(336deg); }
}
@keyframes phoneGlass {
  0%, 30% { transform: translateX(-120%); opacity: 0; }
  52% { opacity: 0.8; }
  78%, 100% { transform: translateX(120%); opacity: 0; }
}
@keyframes phoneGridMove {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-32px, -32px, 0); }
}
@keyframes barBreathe {
  0%, 100% { opacity: 0.78; transform: scaleX(0.92); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 920px) {
  .nav-toggle { display: grid; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    background: rgba(5,5,5,0.96);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a {
    text-align: center;
  }
  .nav-cta {
    width: 100%;
  }
  .hero, .split, .manifesto, .contact-layout, .security-band { grid-template-columns: 1fr; }
  .hero {
    text-align: center;
    justify-items: center;
  }
  .hero-content {
    display: grid;
    justify-items: center;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .center-action {
    justify-content: center;
  }
  .hero-dashboard { width: min(100%, 460px); max-width: 460px; margin-inline: auto; }
  .hero-phone-showcase { min-height: 500px; }
  .metric-list div,
  .contact-points div {
    justify-content: center;
    text-align: left;
  }
  .trust-strip, .facts, .feature-grid, .pricing-grid, .mini-pricing, .timeline { grid-template-columns: 1fr; }
  .check-list.inline { columns: 1; }
  .page-main { padding-top: 78px; }
  .section, .final-cta, .page-hero, .contact-layout {
    width: min(1180px, calc(100% - 28px));
  }
}
@media (max-width: 560px) {
  body { min-width: 0; }
  .site-header { padding: 14px 16px; }
  .brand { font-size: 15px; }
  .brand-word { font-size: 15px; letter-spacing: 0.06em; }
  .brand-mark { width: 40px; height: 40px; }
  h1, h2, h3, p, a, span, strong, li, label, button {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
  }
  h1 { font-size: clamp(34px, 10.8vw, 46px); line-height: 1.04; }
  h2 { font-size: clamp(27px, 8.4vw, 34px); line-height: 1.1; }
  h3 { font-size: 20px; }
  h1,
  h2,
  h3,
  .tag,
  .eyebrow {
    overflow-wrap: normal;
    word-break: keep-all;
    text-wrap: wrap;
  }
  .hero { min-height: auto; padding: 96px 16px 42px; gap: 22px; }
  .hero-content { width: 100%; }
  .hero-lead,
  .page-hero p,
  .rich-text p,
  .contact-copy p {
    font-size: 17px;
    line-height: 1.45;
  }
  .hero-actions, .center-action { display: grid; width: 100%; gap: 10px; }
  .btn, .contact-form button { width: 100%; }
  .btn { min-height: 48px; padding: 12px 14px; flex-wrap: wrap; }
  .btn svg { flex: 0 0 auto; }
  .btn,
  .contact-points div,
  .metric-list div,
  .phone-cta {
    min-width: 0;
  }
  .btn span,
  .contact-points span,
  .metric-list span,
  .phone-cta span {
    min-width: 0;
    max-width: 100%;
  }
  .section { padding: 64px 0; }
  .page-hero { padding-top: 56px; padding-bottom: 42px; }
  .page-hero p { max-width: 100%; }
  .feature-grid,
  .pricing-grid,
  .mini-pricing,
  .timeline,
  .trust-strip,
  .facts {
    gap: 12px;
  }
  .trust-strip,
  .facts {
    background: transparent;
    border-color: rgba(246,217,141,0.1);
    box-shadow: none;
  }
  .trust-strip div,
  .facts div,
  .timeline div,
  .manifesto-list div,
  .contact-points div {
    padding: 18px;
  }
  .feature-card,
  .price-card,
  .mini-pricing article,
  .contact-form,
  .security-band,
  .final-cta {
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  }
  .price-card,
  .feature-card,
  .mini-pricing article,
  .security-band {
    min-height: 0;
    padding: 20px;
  }
  .feature-card svg { width: 31px; height: 31px; margin-bottom: 20px; }
  .price-card h2,
  .price-card h3 {
    margin: 18px 0 10px;
    overflow-wrap: normal;
    word-break: keep-all;
    text-wrap: wrap;
  }
  .check-list { margin-top: 18px; }
  .check-list li { padding-left: 20px; }
  .security-band { gap: 22px; }
  .big-price { padding: 20px; }
  .contact-layout { padding: 86px 0 56px; }
  .contact-copy h1 { font-size: clamp(34px, 10.5vw, 46px); }
  .contact-form { padding: 20px; }
  .contact-form input,
  .contact-form textarea {
    padding: 13px;
  }
  .hero-dashboard { padding: 20px; }
  .hero-phone-showcase { min-height: 430px; }
  .phone-orbit { width: 300px; height: 420px; }
  .phone-device {
    --phone-z: -8deg;
    --phone-y: -10deg;
    --phone-x: 1deg;
    --phone-depth: 20px;
    width: 190px;
    height: 382px;
  }
  .phone-hero-card { padding: 13px; }
  .phone-hero-card h3 { font-size: 19px; }
  .phone-hero-card p { font-size: 10px; }
  .phone-metrics div { padding: 10px; }
  .phone-brand { margin-top: 14px; }
  .phone-brand img { width: 28px; height: 28px; }
  .phone-halo.halo-two { width: 320px; height: 140px; }
  .phone-orbit::after { width: 210px; height: 58px; bottom: 28px; }
  .price-card strong, .big-price strong {
    font-size: 33px;
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: keep-all;
  }
  .mini-pricing strong { font-size: 27px; }
  .trust-strip div, .facts div { min-height: auto; }
  .trust-strip strong,
  .facts strong {
    font-size: 25px;
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: keep-all;
  }
  .final-cta {
    margin-top: 28px;
    margin-bottom: 58px;
    padding: 30px 20px;
  }
  .site-footer { flex-direction: column; }
}
@media (max-width: 380px) {
  .site-header { padding-inline: 12px; }
  .brand-word { display: none; }
  .section, .final-cta, .page-hero, .contact-layout {
    width: min(1180px, calc(100% - 20px));
  }
  .hero { padding-inline: 10px; }
  h1 { font-size: 35px; }
  h2 { font-size: 27px; }
  .feature-card,
  .price-card,
  .mini-pricing article,
  .contact-form,
  .security-band,
  .final-cta {
    padding: 18px;
  }
  .price-card strong,
  .big-price strong {
    font-size: 30px;
  }
}
