/* ---------- tokens ---------- */
:root {
  --navy-900: #050d1f;
  --navy-800: #07122a;
  --navy-700: #0a1a3b;
  --navy-600: #112450;
  --navy-500: #1a3168;
  --navy-line: rgba(212, 175, 106, 0.22);
  --gold: #d4af6a;
  --gold-bright: #e7c684;
  --gold-deep: #a98444;
  --ink: #f6f4ef;
  --ink-muted: #b9c0d1;
  --ink-faint: #7d8499;
  --whats: #25d366;
  --whats-deep: #128c45;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 30px 80px -30px rgba(0,0,0,0.6), 0 10px 30px -10px rgba(0,0,0,0.4);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--navy-800);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- background field ---------- */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(212,175,106,0.10), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(26, 49, 104, 0.55), transparent 60%),
    linear-gradient(180deg, #06102a 0%, #050b1d 100%);
}
.bg-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(212,175,106,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, black 25%, black 75%, transparent);
  opacity: 0.7;
}

/* ---------- layout ---------- */
.wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  backdrop-filter: blur(14px);
  background: rgba(5, 13, 31, 0.65);
  border-bottom: 1px solid rgba(212,175,106,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .b1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-text .b1 .gold { color: var(--gold); }
.brand-text .b2 {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-muted);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold); }

.btn-whats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whats);
  color: #07120a;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 6px 18px -6px rgba(37, 211, 102, 0.6);
}
.btn-whats:hover {
  transform: translateY(-1px);
  background: #2ee06f;
}
.btn-whats svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,106,0.4);
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-ghost:hover { background: rgba(212,175,106,0.08); border-color: var(--gold); }

/* ---------- hero ---------- */
.hero { padding: 64px 0 80px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--whats);
  box-shadow: 0 0 0 4px rgba(37,211,102,0.18);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37,211,102,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(37,211,102,0.02); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 22px 0 18px;
  text-wrap: pretty;
}
.hero h1 .gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.18em;
  background: var(--gold);
  opacity: 0.35;
  border-radius: 4px;
}

.hero-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-muted);
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-faint);
}
.hero-meta .check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta .check svg { width: 14px; height: 14px; color: var(--gold); }

/* ---------- phone ---------- */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.phone-stage::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  background: radial-gradient(closest-side, rgba(212,175,106,0.18), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.phone {
  position: relative;
  width: 320px;
  height: 640px;
  border-radius: 44px;
  background: linear-gradient(180deg, #1a1a1c, #0d0d0f);
  padding: 12px;
  box-shadow:
    0 60px 120px -30px rgba(0,0,0,0.8),
    0 20px 40px -10px rgba(0,0,0,0.5),
    inset 0 0 0 1.5px rgba(255,255,255,0.05);
  z-index: 1;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background: #0a0a0a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #e9edef;
}

/* status bar (mock iOS) */
.wa-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 26px 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #000;
}
.wa-statusbar .t { font-variant-numeric: tabular-nums; }
.wa-statusbar .bell { font-size: 12px; opacity: 0.85; margin-left: 6px; flex: 1; }
.wa-statusbar .r {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wa-statusbar .bars {
  width: 16px; height: 11px;
  background:
    linear-gradient(180deg, transparent 73%, #fff 73%) 0 0 / 3px 100% no-repeat,
    linear-gradient(180deg, transparent 55%, #fff 55%) 4px 0 / 3px 100% no-repeat,
    linear-gradient(180deg, transparent 35%, #fff 35%) 8px 0 / 3px 100% no-repeat,
    linear-gradient(180deg, transparent 15%, #fff 15%) 12px 0 / 3px 100% no-repeat;
}
.wa-statusbar .wifi {
  width: 16px; height: 12px;
  background: radial-gradient(circle at 50% 100%, #fff 2px, transparent 2.5px),
    radial-gradient(circle at 50% 100%, transparent 4px, #fff 4.5px, #fff 5.5px, transparent 6px),
    radial-gradient(circle at 50% 100%, transparent 7.5px, #fff 8px, #fff 9px, transparent 9.5px);
}
.wa-statusbar .batt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 12px;
  border-radius: 3px;
  background: #fff;
  color: #000;
  font-size: 9px;
  font-weight: 700;
  position: relative;
}
.wa-statusbar .batt::after {
  content: "";
  position: absolute;
  right: -3px; top: 3px;
  width: 2px; height: 6px;
  background: #fff;
  border-radius: 0 1px 1px 0;
}

.wa-header {
  background: #000;
  padding: 8px 12px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.wa-header .back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  padding: 4px 8px 4px 4px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
}
.wa-header .back .badge {
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.wa-header .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy-700);
  overflow: hidden;
  flex-shrink: 0;
}
.wa-header .avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-header .who { flex: 1; min-width: 0; }
.wa-header .who .name { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.wa-header .who .status { font-size: 11.5px; color: #8696a0; }
.wa-header .icons {
  display: flex;
  gap: 4px;
  color: #fff;
}
.wa-header .icons svg {
  width: 22px; height: 22px;
  padding: 5px;
  box-sizing: content-box;
  border-radius: 50%;
}
.wa-header .icons svg:first-child {
  background: rgba(255,255,255,0.06);
}

/* WhatsApp doodle pattern body */
.wa-body {
  flex: 1;
  background-color: #0a0a0a;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='%23262626' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' opacity='0.55'%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3Cpath d='M28 28l4 4M28 32l4-4'/%3E%3Cpath d='M70 18c4 6 4 12 0 18'/%3E%3Cpath d='M64 20c4 4 4 10 0 14'/%3E%3Crect x='100' y='14' width='14' height='20' rx='2'/%3E%3Cpath d='M104 18h6M104 22h6M104 26h6'/%3E%3Cpath d='M150 20l8 8-8 8M158 28h12'/%3E%3Cpath d='M190 16c6 0 10 4 10 10s-4 10-10 10-10-4-10-10'/%3E%3Cpath d='M22 70l6-6 6 6'/%3E%3Cpath d='M22 80l6-6 6 6'/%3E%3Ccircle cx='66' cy='72' r='8'/%3E%3Cpath d='M62 72l4 4 6-8'/%3E%3Cpath d='M110 64v16M102 72h16'/%3E%3Cpath d='M148 64c0 8 6 14 14 14M148 78c8 0 14-6 14-14'/%3E%3Cpath d='M194 62l-6 6 6 6 6-6z'/%3E%3Cpath d='M30 110l8 4-4 8-8-4z'/%3E%3Cpath d='M68 102v18M60 110h16'/%3E%3Cpath d='M100 110a10 10 0 0120 0v8a10 10 0 01-20 0z'/%3E%3Cpath d='M150 102c6 4 10 8 10 16'/%3E%3Cpath d='M156 102c-2 4 0 12 6 14'/%3E%3Cpath d='M188 102l12 16M200 102l-12 16'/%3E%3Cpath d='M22 150c4-6 12-6 16 0'/%3E%3Cpath d='M22 156c4-6 12-6 16 0'/%3E%3Cpath d='M60 144l6 14 14-6-6-14z'/%3E%3Ccircle cx='110' cy='154' r='10'/%3E%3Cpath d='M104 154h12M110 148v12'/%3E%3Cpath d='M148 144l8 16 8-16'/%3E%3Cpath d='M188 144v16M194 144v16M200 144v16'/%3E%3Cpath d='M28 188l8 8M36 188l-8 8'/%3E%3Cpath d='M66 184v16M58 192h16'/%3E%3Cpath d='M104 184l4 16 4-16M100 200h16'/%3E%3Cpath d='M148 184c6 0 12 4 12 12M148 196c0-6 4-10 12-12'/%3E%3Cpath d='M188 184l10 16M198 184l-10 16'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  padding: 12px 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  font-size: 13.5px;
  line-height: 1.4;
}
.wa-day {
  align-self: center;
  background: rgba(20,30,38,0.85);
  color: #cfd5d9;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 8px;
  margin: 6px 0 8px;
  letter-spacing: 0.04em;
}
.wa-bubble {
  max-width: 86%;
  padding: 7px 10px 6px;
  border-radius: 8px;
  position: relative;
  word-wrap: break-word;
  animation: bubble-in 0.3s cubic-bezier(0.2,0.7,0.3,1) both;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.4);
  font-size: 13.5px;
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(6px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-bubble.in {
  background: #1f2c33;
  align-self: flex-start;
  color: #e9edef;
  border-top-left-radius: 2px;
}
.wa-bubble.out {
  background: #134d37;
  align-self: flex-end;
  color: #e9edef;
  border-top-right-radius: 2px;
  min-width: 56px;
}
.wa-text {
  white-space: pre-line;
  padding-right: 52px;
}
.wa-bubble.out .wa-text {
  padding-right: 48px;
}
.wa-bubble strong { font-weight: 700; color: #ffffff; }
.wa-bubble em { font-style: italic; color: #d7dadc; }
.wa-meta {
  position: absolute;
  bottom: 4px;
  right: 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.wa-meta svg { width: 14px; height: 11px; color: #53bdeb; }

.typing-bubble {
  display: inline-flex;
  gap: 4px;
  padding: 10px 12px 9px;
  width: auto;
  align-self: flex-start;
}
.typing-bubble span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #8696a0;
  display: inline-block;
  animation: dot 1.1s ease-in-out infinite;
}
.typing-bubble span:nth-child(2) { animation-delay: 0.15s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.3s; }
@keyframes dot {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

.wa-input {
  background: #000;
  padding: 8px 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-input .plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-input .field {
  flex: 1;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 22px;
}
.wa-input .ic {
  width: 30px; height: 30px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.9;
}

/* floating phone accent */
.phone-tag {
  position: absolute;
  background: linear-gradient(180deg, rgba(212,175,106,0.16), rgba(212,175,106,0.04));
  border: 1px solid rgba(212,175,106,0.35);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
}
.phone-tag svg { width: 14px; height: 14px; }
.phone-tag.t1 { top: 8%; left: -4%; }
.phone-tag.t2 { bottom: 14%; right: -8%; }

/* ---------- section base ---------- */
.section { padding: 96px 0; position: relative; }
.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-head h2 .gold { color: var(--gold); font-style: italic; }
.section-head p {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 580px;
}

.divider-line {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 auto;
  justify-content: center;
}
.divider-line::before,
.divider-line::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ---------- features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: linear-gradient(180deg, rgba(17, 36, 80, 0.5), rgba(10, 26, 59, 0.3));
  border: 1px solid rgba(212,175,106,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,106,0.5);
}
.feature-card .icon-frame {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(212,175,106,0.10);
  border: 1px solid rgba(212,175,106,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 22px;
}
.feature-card .icon-frame svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.feature-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.feature-card.featured {
  background: linear-gradient(180deg, rgba(212, 175, 106, 0.14), rgba(212, 175, 106, 0.04));
  border-color: rgba(212,175,106,0.4);
}
.feature-card .pill {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(212,175,106,0.4);
  border-radius: 999px;
  padding: 3px 8px;
}

/* ---------- how it works ---------- */
.how {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 106, 0.04), transparent);
  border-top: 1px solid rgba(212,175,106,0.08);
  border-bottom: 1px solid rgba(212,175,106,0.08);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.how-card {
  background: rgba(7, 18, 42, 0.5);
  border: 1px solid rgba(212,175,106,0.18);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.how-card .num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.7;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.how-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- audience ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.audience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.audience-list .item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(7, 18, 42, 0.45);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.audience-list .item .num {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  width: 26px;
  flex-shrink: 0;
  padding-top: 1px;
}
.audience-list .item p {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.45;
}
.audience-list .item p .gold { color: var(--gold); font-weight: 600; }

.quote-block {
  position: relative;
  padding: 36px 30px;
  background:
    linear-gradient(180deg, rgba(212,175,106,0.12), rgba(212,175,106,0.02));
  border: 1px solid rgba(212,175,106,0.3);
  border-radius: var(--radius-lg);
}
.quote-block .mark {
  position: absolute;
  top: 12px; left: 22px;
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
}
.quote-block .q {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.quote-block .q .gold { color: var(--gold); font-style: italic; }
.quote-block .meta {
  color: var(--ink-faint);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.quote-rotator-dots {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}
.quote-rotator-dots button {
  width: 22px; height: 3px;
  background: rgba(212,175,106,0.2);
  border-radius: 2px;
  transition: background 0.2s ease;
}
.quote-rotator-dots button.active { background: var(--gold); }

/* ---------- cta block ---------- */
.cta-block {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  background:
    linear-gradient(135deg, rgba(212,175,106,0.16), rgba(212,175,106,0.04) 40%, rgba(17, 36, 80, 0.4));
  border: 1px solid rgba(212,175,106,0.3);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 100% 50%, rgba(212,175,106,0.15), transparent 70%);
  pointer-events: none;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 16px;
}
.cta-block h2 .gold { color: var(--gold); font-style: italic; }
.cta-block p {
  font-size: 16px;
  color: var(--ink-muted);
  margin: 0 0 28px;
  max-width: 460px;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.qr-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 220px;
  margin-left: auto;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.qr-card .qr-head {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.qr-card .qr-head img {
  width: 32px; height: 32px;
  border-radius: 6px;
}
.qr-card .qr-head .name {
  color: var(--navy-700);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
}
.qr-card .qr-head .sub {
  color: #6b7280;
  font-size: 11px;
}
.qr-card .qr-img {
  width: 180px; height: 180px;
  position: relative;
}
.qr-card .qr-img img { width: 100%; height: 100%; display: block; }
.qr-card .qr-img .center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.qr-card .qr-img .center svg { width: 22px; height: 22px; color: var(--whats); }
.qr-card .scan-line {
  color: var(--navy-700);
  font-size: 11.5px;
  text-align: center;
  font-weight: 500;
}

/* ---------- music section ---------- */
.music {
  background: linear-gradient(180deg, transparent, rgba(212,175,106,0.04), transparent);
}
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.music-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 18px 0 18px;
  text-wrap: balance;
}
.music-text h2 .gold { color: var(--gold); font-style: italic; }
.music-text p {
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 460px;
  margin: 0 0 28px;
}

.player {
  background: linear-gradient(180deg, rgba(17, 36, 80, 0.65), rgba(7, 18, 42, 0.65));
  border: 1px solid rgba(212,175,106,0.25);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.player .row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 12px;
  border-radius: var(--radius-md);
  transition: background 0.15s ease;
  cursor: pointer;
}
.player .row:hover { background: rgba(212,175,106,0.05); }
.player .row.active { background: rgba(212,175,106,0.10); }
.player .row .play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(212,175,106,0.14);
  border: 1px solid rgba(212,175,106,0.4);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.player .row:hover .play, .player .row.active .play {
  background: var(--gold);
  color: var(--navy-700);
}
.player .row .play svg { width: 16px; height: 16px; }
.player .row .info { flex: 1; min-width: 0; }
.player .row .title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 3px;
}
.player .row .sub {
  font-size: 12.5px;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.player .row .sub .tag {
  background: rgba(212,175,106,0.12);
  color: var(--gold);
  padding: 1.5px 7px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.03em;
}
.player .row .dur {
  color: var(--ink-faint);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.player .progress {
  margin-top: 14px;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.player .progress .bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.player .progress .bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  border-radius: 4px;
  transition: width 0.3s ease;
}
.player .progress .times {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(212,175,106,0.15);
  padding: 56px 0 36px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14px; color: var(--ink-muted); transition: color 0.15s ease; }
.footer a:hover { color: var(--gold); }
.footer-about p {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
  margin: 14px 0 0;
}
.footer .brand { margin-bottom: 0; }
.footer-bottom {
  border-top: 1px solid rgba(212,175,106,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-faint);
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,106,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.15s ease;
}
.socials a:hover { background: rgba(212,175,106,0.1); }
.socials svg { width: 16px; height: 16px; }

/* ---------- floating whatsapp ---------- */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whats);
  color: #07120a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.5), 0 6px 14px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}
.float-wa:hover { transform: scale(1.06); }
.float-wa svg { width: 28px; height: 28px; }
.float-wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whats);
  opacity: 0.5;
  animation: ring 2s ease-out infinite;
  z-index: -1;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; gap: 40px; }
  .music-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-block { grid-template-columns: 1fr; padding: 44px 36px; gap: 36px; }
  .qr-card { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .wrap { width: 92vw; }
  .nav { padding: 14px 0; }
  .nav-links { display: none; }
  .brand img { width: 38px; height: 38px; }
  .hero { padding: 36px 0 60px; }
  .hero h1 { font-size: clamp(36px, 9vw, 50px); }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-block { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-about { grid-column: 1 / -1; }
  .phone { width: 280px; height: 580px; }
  .phone-tag.t1 { left: -10px; top: 4%; }
  .phone-tag.t2 { right: -10px; bottom: 18%; }
  .btn-whats, .btn-ghost { padding: 11px 16px; font-size: 13px; }
  .float-wa { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .float-wa svg { width: 24px; height: 24px; }
}
