:root {
  --blue: #2563eb;
  --blue-deep: #204fd8;
  --blue-dark: #15369c;
  --blue-soft: #eaf1ff;
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --surface: #f7f9fc;
  --white: #ffffff;
  --green: #22c55e;
  --shadow: 0 24px 70px rgba(21, 54, 156, 0.14);
  --radius-lg: 36px;
  --radius-md: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 100;
  padding: 12px 18px; color: var(--white); background: var(--ink); border-radius: 12px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; transition: 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(228, 231, 236, 0.8);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 21px; font-weight: 800; letter-spacing: -0.03em; }
.brand img { border-radius: 11px; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 600; color: #475467; }
.main-nav a { transition: color 0.2s ease; }
.main-nav a:hover { color: var(--blue); }
.page-switch { display: inline-flex; align-items: center; padding: 4px; background: #eef2f8; border: 1px solid #e0e5ee; border-radius: 13px; }
.page-switch a { display: inline-flex; align-items: center; justify-content: center; min-height: 36px; padding: 0 13px; color: #667085; border-radius: 9px; font-size: 13px; font-weight: 750; transition: 0.2s ease; }
.page-switch a:hover { color: var(--blue); }
.page-switch a.active { color: var(--white); background: var(--blue); box-shadow: 0 5px 13px rgba(37,99,235,0.2); }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px;
  color: var(--white); background: var(--blue); border-radius: 14px; font-weight: 750;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28); }
.button-small { min-height: 44px; padding-inline: 20px; font-size: 15px; }

.hero { position: relative; min-height: 820px; overflow: hidden; padding: 164px 0 96px; background: linear-gradient(140deg, #fff 0%, #f7faff 56%, #eef4ff 100%); }
.hero::before {
  content: ""; position: absolute; width: 650px; height: 650px; right: -240px; top: -280px;
  border: 1px solid rgba(37, 99, 235, 0.12); border-radius: 50%; box-shadow: inset 0 0 0 90px rgba(37, 99, 235, 0.025);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: 54px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 2px; margin: 0 9px 4px 0; background: currentColor; }
.eyebrow.light { color: #bcd0ff; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 26px; font-size: clamp(48px, 5.6vw, 78px); line-height: 0.99; letter-spacing: -0.058em; }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 620px; margin-bottom: 34px; color: #475467; font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.version-notice {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 14px; padding: 8px 13px;
  color: var(--blue-dark); background: var(--blue-soft); border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 999px; font-size: 13px; font-weight: 750; line-height: 1.35;
}
.version-notice span {
  flex: 0 0 auto; width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.13);
}
.store-row { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge-link {
  display: inline-flex; align-items: center; height: 58px;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.store-badge-link:hover { transform: translateY(-2px); filter: drop-shadow(0 12px 14px rgba(16, 24, 40, 0.16)); }
.store-badge-link img { display: block; width: auto; max-width: 190px; height: 58px; object-fit: contain; }
.store-button {
  display: inline-flex; align-items: center; gap: 12px; min-width: 184px; min-height: 61px; padding: 9px 18px;
  color: var(--white); background: var(--ink); border: 1px solid var(--ink); border-radius: 16px;
  font-size: 18px; font-weight: 700; line-height: 1.05; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.store-button:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(16, 24, 40, 0.18); }
.store-button small { display: block; margin-bottom: 3px; font-size: 10px; font-weight: 500; letter-spacing: 0.02em; }
.apple-mark { position: relative; width: 25px; height: 29px; font-size: 0; }
.apple-mark::before { content: ""; position: absolute; left: 3px; top: 8px; width: 20px; height: 20px; background: currentColor; border-radius: 48% 48% 54% 54%; }
.apple-mark::after { content: ""; position: absolute; left: 15px; top: 1px; width: 8px; height: 7px; background: currentColor; border-radius: 8px 0 8px 0; transform: rotate(-30deg); }
.play-mark { width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 23px solid currentColor; filter: drop-shadow(0 0 0 transparent); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 25px; color: #667085; font-size: 13px; font-weight: 650; }
.hero-proof span::before { content: "✓"; display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 7px; color: var(--white); background: var(--green); border-radius: 50%; font-size: 11px; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 350px; height: 350px; right: 12%; top: 26%; background: rgba(37, 99, 235, 0.09); filter: blur(70px); }
.hero-glow-two { width: 220px; height: 220px; right: 40%; bottom: -40px; background: rgba(34, 197, 94, 0.07); filter: blur(60px); }
.visual-orbit { position: absolute; border: 1px dashed rgba(37, 99, 235, 0.18); border-radius: 50%; }
.orbit-one { width: 500px; height: 500px; }
.orbit-two { width: 390px; height: 390px; }
.phone-card {
  position: relative; z-index: 2; width: min(360px, 78vw); min-height: 590px; overflow: hidden; padding: 14px 14px 20px;
  background: var(--white); border: 1px solid rgba(37, 99, 235, 0.15); border-radius: 46px; box-shadow: 0 38px 80px rgba(21, 54, 156, 0.22);
  transform: rotate(2.4deg);
}
.phone-card::after { content: ""; position: absolute; inset: 0; border: 7px solid #fff; border-radius: inherit; pointer-events: none; }
.phone-top { display: flex; align-items: center; justify-content: space-between; height: 42px; padding-inline: 12px; color: #344054; font-size: 14px; }
.phone-top span { width: 9px; height: 9px; background: var(--green); border-radius: 50%; }
.phone-top i { width: 24px; height: 4px; background: #d0d5dd; border-radius: 4px; }
.phone-card img { width: 100%; height: 438px; object-fit: contain; }
.phone-message { margin: 0 10px; padding: 15px 17px; color: var(--white); background: linear-gradient(135deg, var(--blue), var(--blue-deep)); border-radius: 17px; }
.phone-message b, .phone-message span { display: block; }
.phone-message span { margin-top: 2px; color: #d8e4ff; font-size: 13px; }
.floating-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 14px 17px;
  background: rgba(255, 255, 255, 0.94); border: 1px solid rgba(37, 99, 235, 0.12); border-radius: 18px;
  box-shadow: 0 18px 48px rgba(21, 54, 156, 0.14); backdrop-filter: blur(12px);
}
.floating-card b, .floating-card small { display: block; white-space: nowrap; }
.floating-card b { font-size: 13px; }
.floating-card small { color: var(--muted); font-size: 11px; }
.floating-icon { display: grid; place-items: center; width: 35px; height: 35px; color: var(--white); background: var(--blue); border-radius: 12px; font-weight: 900; }
.card-trust { left: -8px; top: 102px; animation: float 5s ease-in-out infinite; }
.card-chat { right: -10px; bottom: 88px; animation: float 5.4s 0.6s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-8px); } }

.trust-strip { background: var(--ink); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { min-height: 108px; display: flex; align-items: center; gap: 15px; padding: 22px 26px; border-right: 1px solid rgba(255,255,255,0.11); }
.trust-grid div:first-child { border-left: 1px solid rgba(255,255,255,0.11); }
.trust-grid b { color: #78a1ff; font-size: 12px; letter-spacing: 0.08em; }
.trust-grid span { font-size: 14px; font-weight: 650; line-height: 1.35; }

.section { padding: 120px 0; }
.section-heading { margin-bottom: 58px; }
.section-heading.centered { max-width: 850px; margin-inline: auto; text-align: center; }
.section-heading h2, .steps-copy h2, .register-grid h2, .safety-grid h2, .faq-title h2, .download-copy h2 { margin-bottom: 20px; font-size: clamp(38px, 4.4vw, 60px); line-height: 1.04; letter-spacing: -0.048em; }
.section-heading > p:last-child { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 18px; }
.problem-section { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.problem-card { position: relative; min-height: 350px; overflow: hidden; padding: 42px; border-radius: var(--radius-lg); }
.problem-card h3 { max-width: 440px; margin: 35px 0 16px; font-size: 30px; line-height: 1.15; letter-spacing: -0.035em; }
.problem-card p { max-width: 490px; color: var(--muted); }
.card-number { display: inline-flex; padding: 7px 12px; color: #667085; background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.06); border-radius: 999px; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: 0.08em; }
.muted-card { background: #f2f4f7; }
.accent-card { color: var(--white); background: linear-gradient(145deg, #2f6ff0, #1746c7); box-shadow: var(--shadow); }
.accent-card p { color: #dbe7ff; }
.accent-card .card-number { color: var(--white); background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.18); }
.fake-results { position: absolute; right: 34px; bottom: 34px; display: flex; flex-direction: column; gap: 8px; opacity: 0.35; transform: rotate(-5deg); }
.fake-results i { display: block; width: 190px; height: 36px; background: #98a2b3; border-radius: 10px; }
.fake-results i:nth-child(2) { margin-left: 18px; width: 160px; }
.fake-results i:nth-child(3) { margin-left: 40px; width: 130px; }
.recommendation-pill { position: absolute; right: 28px; bottom: 28px; display: flex; align-items: center; padding: 10px 14px 10px 10px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; }
.avatar { display: grid; place-items: center; width: 34px; height: 34px; margin-right: -8px; color: var(--white); border: 2px solid #2a64e2; border-radius: 50%; font-size: 12px; font-weight: 800; }
.avatar-one { background: #f59e0b; }.avatar-two { background: #ec4899; }.avatar-three { background: #22c55e; margin-right: 10px; }
.recommendation-pill b { font-size: 12px; }

.steps-section { overflow: hidden; color: var(--white); background: #101828; }
.split-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: center; gap: 88px; }
.steps-copy h2 { color: var(--white); }
.section-intro { max-width: 510px; color: #98a2b3; font-size: 18px; }
.steps-list { margin: 45px 0 0; padding: 0; list-style: none; counter-reset: item; }
.steps-list li { position: relative; min-height: 92px; padding: 0 0 30px 68px; counter-increment: item; border-left: 1px solid #344054; }
.steps-list li:last-child { border-left-color: transparent; }
.steps-list li::before { content: counter(item); position: absolute; left: -24px; top: -3px; display: grid; place-items: center; width: 46px; height: 46px; color: var(--white); background: var(--blue); border: 7px solid #101828; border-radius: 50%; font-size: 13px; font-weight: 800; }
.steps-list b, .steps-list span { display: block; }
.steps-list b { margin-bottom: 5px; font-size: 19px; }
.steps-list span { max-width: 470px; color: #98a2b3; font-size: 15px; }
.flow-heading h2 { color: var(--white); }
.flow-heading > p:last-child { color: #98a2b3; }
.service-flow-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 0; padding: 0; list-style: none; counter-reset: none;
}
.service-flow-grid li {
  position: relative; min-height: 250px; padding: 30px;
  background: #182230; border: 1px solid #344054; border-radius: 24px;
}
.service-flow-grid li > span {
  display: inline-grid; place-items: center; width: 38px; height: 38px;
  color: #a9c3ff; background: rgba(37, 99, 235, 0.18); border-radius: 12px;
  font-size: 12px; font-weight: 850;
}
.service-flow-grid h3 { margin: 38px 0 11px; color: var(--white); font-size: 22px; line-height: 1.16; letter-spacing: -0.025em; }
.service-flow-grid p { margin: 0; color: #98a2b3; font-size: 14px; }
.service-flow-grid .flow-highlight { background: linear-gradient(145deg, #2867e8, #1746c7); border-color: #4b7fee; box-shadow: 0 22px 54px rgba(0, 47, 160, 0.28); }
.service-flow-grid .flow-highlight > span { color: var(--white); background: rgba(255,255,255,0.15); }
.service-flow-grid .flow-highlight p { color: #dbe7ff; }
.flow-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.flow-proof article { padding: 24px 28px; background: rgba(255,255,255,0.06); border: 1px solid #344054; border-radius: 20px; }
.flow-proof b { display: block; margin-bottom: 6px; color: var(--white); font-size: 16px; }
.flow-proof p { margin: 0; color: #98a2b3; font-size: 13px; }
.steps-visual { position: relative; }
.network-card { position: relative; max-width: 480px; height: 610px; margin-inline: auto; overflow: hidden; padding: 14px; background: #0050e1; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg); box-shadow: 0 30px 75px rgba(0,0,0,0.22); }
.network-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.network-card img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.steps-visual > p { position: absolute; right: -20px; bottom: 32px; z-index: 4; max-width: 330px; margin: 0; padding: 18px 20px; color: #344054; background: rgba(255,255,255,0.96); border: 1px solid rgba(255,255,255,0.8); border-radius: 18px; box-shadow: var(--shadow); font-size: 13px; }

.audience-section { background: var(--surface); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.audience-card { position: relative; min-height: 670px; overflow: hidden; padding: 42px; border: 1px solid #eaecf0; border-radius: var(--radius-lg); }
.audience-card h3 { max-width: 480px; margin: 28px 0 24px; font-size: 32px; line-height: 1.15; letter-spacing: -0.04em; }
.audience-card ul { position: relative; z-index: 2; max-width: 470px; margin: 0; padding: 0; list-style: none; }
.audience-card li { position: relative; margin: 12px 0; padding-left: 29px; font-size: 15px; }
.audience-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.audience-label { display: inline-flex; padding: 7px 12px; color: var(--blue); background: var(--blue-soft); border-radius: 999px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.audience-card img { position: absolute; right: -40px; bottom: -100px; z-index: 2; width: 430px; height: 430px; object-fit: contain; opacity: 0.98; }
.client-card { background: var(--white); }
.master-card { color: var(--white); background: linear-gradient(150deg, #1d4ed8 0%, #0f2b83 100%); border-color: transparent; }
.master-card .audience-label { color: var(--white); background: rgba(255,255,255,0.14); }
.master-card li::before { color: #7aa5ff; }
.master-card img { width: 460px; height: 460px; filter: saturate(0.9); }

.why-register { background: var(--white); }
.register-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 100px; align-items: start; }
.register-grid h2 { position: sticky; top: 120px; }
.register-points { border-top: 1px solid var(--line); }
.register-points article { display: grid; grid-template-columns: 58px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.register-points > article > span { color: var(--blue); font-size: 13px; font-weight: 800; }
.register-points h3 { margin-bottom: 8px; font-size: 23px; letter-spacing: -0.025em; }
.register-points p { margin: 0; color: var(--muted); }

.safety-section { padding-top: 0; }
.safety-grid { display: grid; grid-template-columns: 120px 1fr 0.72fr; gap: 45px; align-items: center; padding: 54px; color: var(--white); background: var(--ink); border-radius: var(--radius-lg); }
.safety-mark { display: grid; place-items: center; width: 105px; height: 105px; color: var(--white); background: var(--blue); border-radius: 32px; font-size: 48px; font-weight: 900; box-shadow: 0 18px 42px rgba(37,99,235,0.35); }
.safety-grid h2 { margin-bottom: 15px; }
.safety-grid p { margin-bottom: 0; color: #aab2c0; }
.safety-tags { display: flex; flex-direction: column; gap: 10px; }
.safety-tags span { padding: 13px 16px; color: #d0d5dd; border: 1px solid #344054; border-radius: 12px; font-size: 13px; font-weight: 650; }
.safety-tags span::before { content: "✓"; margin-right: 10px; color: #75a0ff; }

.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 100px; }
.faq-title { position: sticky; top: 120px; align-self: start; }
.faq-title > p:last-child { color: var(--muted); }
.accordion { border-top: 1px solid #d0d5dd; }
details { border-bottom: 1px solid #d0d5dd; }
summary { position: relative; padding: 28px 54px 28px 0; cursor: pointer; font-size: 19px; font-weight: 750; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; top: 20px; display: grid; place-items: center; width: 36px; height: 36px; color: var(--blue); background: var(--white); border-radius: 50%; font-size: 24px; font-weight: 400; transition: transform 0.2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 670px; padding: 0 55px 26px 0; color: var(--muted); font-size: 15px; }

.download-section { padding: 30px 0 80px; background: var(--surface); }
.download-card { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; padding: 72px; color: var(--white); background: linear-gradient(135deg, #2563eb, #123aaf); border-radius: 42px; }
.download-card::after { content: ""; position: absolute; width: 520px; height: 520px; right: -100px; top: -60px; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; box-shadow: inset 0 0 0 70px rgba(255,255,255,0.03); }
.download-copy { position: relative; z-index: 2; max-width: 720px; }
.download-copy h2 { font-size: clamp(42px, 5vw, 68px); }
.download-copy > p:not(.eyebrow) { color: #d7e3ff; font-size: 18px; }
.store-button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.download-card > img { position: absolute; right: 30px; bottom: -100px; z-index: 1; width: 360px; opacity: 0.14; filter: brightness(0) invert(1); transform: rotate(-8deg); }

.site-footer { padding: 58px 0 30px; background: var(--white); }
.footer-top { display: grid; grid-template-columns: 0.6fr 1fr 1.25fr; gap: 42px; align-items: start; padding-bottom: 42px; }
.footer-top > p { max-width: 420px; margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; color: #475467; font-size: 13px; font-weight: 650; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; color: #98a2b3; border-top: 1px solid var(--line); font-size: 12px; }

/* Master landing */
.master-hero { position: relative; min-height: 820px; overflow: hidden; padding: 164px 0 92px; color: var(--white); background: #183eae; }
.master-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 76% 42%, rgba(65,128,255,0.55), transparent 34%), linear-gradient(135deg, transparent 48%, rgba(4,25,92,0.18)); }
.master-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 0.95fr; align-items: center; gap: 70px; }
.master-hero-copy h1 { max-width: 690px; margin-bottom: 26px; font-size: clamp(52px, 6vw, 82px); line-height: 0.98; letter-spacing: -0.06em; }
.master-hero-copy h1 em { color: #9fc0ff; font-style: normal; }
.master-hero-copy > p:not(.eyebrow) { max-width: 620px; margin-bottom: 34px; color: #d4e1ff; font-size: 20px; }
.master-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.button-white { color: #183eae; background: var(--white); box-shadow: 0 16px 34px rgba(0,0,0,0.18); }
.text-link { color: #d4e1ff; font-size: 14px; font-weight: 700; }
.text-link span { margin-left: 8px; }
.master-hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: #bcd0ff; font-size: 12px; font-weight: 650; }
.master-hero-proof span::before { content: "✓"; margin-right: 7px; color: #64e58d; }
.master-hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.master-hero-visual > img { position: relative; z-index: 2; width: min(485px, 100%); max-height: 560px; object-fit: contain; }
.master-hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; }
.orbit-a { width: 660px; height: 660px; right: -220px; top: -190px; }
.orbit-b { width: 440px; height: 440px; right: 90px; bottom: -200px; }
.master-floating { position: absolute; z-index: 3; padding: 13px 17px; color: var(--ink); background: rgba(255,255,255,0.95); border: 1px solid rgba(255,255,255,0.7); border-radius: 16px; box-shadow: 0 18px 48px rgba(4,25,92,0.25); }
.master-floating b, .master-floating span { display: block; }
.master-floating b { font-size: 13px; }
.master-floating span { color: var(--muted); font-size: 10px; }
.metric-one { left: -10px; top: 95px; }
.metric-two { right: -15px; bottom: 90px; }
.masters-page .site-header:not(.scrolled) { color: var(--white); }
.masters-page .site-header:not(.scrolled) .main-nav { color: #d4e1ff; }
.masters-page .site-header:not(.scrolled) .page-switch { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
.masters-page .site-header:not(.scrolled) .page-switch a { color: #d4e1ff; }
.masters-page .site-header:not(.scrolled) .page-switch a.active { color: #183eae; background: var(--white); }

.master-stat-strip { color: var(--white); background: var(--ink); }
.master-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.master-stat-grid div { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 20px 28px; border-right: 1px solid rgba(255,255,255,0.1); }
.master-stat-grid div:first-child { border-left: 1px solid rgba(255,255,255,0.1); }
.master-stat-grid strong { color: #8fb3ff; font-size: 17px; }
.master-stat-grid span { margin-top: 3px; color: #98a2b3; font-size: 12px; }

.master-problem { background: var(--surface); }
.master-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-card { position: relative; min-height: 650px; overflow: hidden; padding: 40px; border-radius: var(--radius-lg); }
.compare-card > span { display: inline-flex; padding: 7px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.compare-card h3 { max-width: 510px; margin: 26px 0 20px; font-size: 31px; line-height: 1.15; letter-spacing: -0.035em; }
.compare-card ul { position: relative; z-index: 3; margin: 0; padding: 0; list-style: none; }
.compare-card li { position: relative; margin: 12px 0; padding-left: 27px; font-size: 14px; }
.compare-card li::before { position: absolute; left: 0; font-weight: 900; }
.compare-card img { position: absolute; right: -45px; bottom: -115px; width: 430px; height: 430px; object-fit: contain; }
.compare-old { background: #eaecf0; }
.compare-old > span { color: #667085; background: rgba(255,255,255,0.65); }
.compare-old li::before { content: "×"; color: #f04438; }
.compare-old img { opacity: 0.72; filter: grayscale(0.2); }
.compare-new { color: var(--white); background: #183eae; box-shadow: var(--shadow); }
.compare-new > span { color: #fff; background: rgba(255,255,255,0.13); }
.compare-new li { color: #d4e1ff; }
.compare-new li::before { content: "✓"; color: #64e58d; }
.compare-new img { right: -35px; bottom: -130px; width: 450px; height: 480px; }

.master-tools-section { color: var(--white); background: #0f172a; }
.master-tools-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 80px; }
.master-tools-copy h2 { margin-bottom: 20px; font-size: clamp(40px, 4.8vw, 62px); line-height: 1.03; letter-spacing: -0.05em; }
.master-tools-copy > p:not(.eyebrow) { color: #98a2b3; }
.tool-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.tool-pills span { padding: 10px 13px; color: #d0d5dd; border: 1px solid #344054; border-radius: 11px; font-size: 12px; font-weight: 650; }
.dashboard-mockup { min-height: 510px; padding: 30px; color: var(--ink); background: var(--white); border-radius: 34px; box-shadow: 0 32px 90px rgba(0,0,0,0.3); transform: rotate(1.4deg); }
.dashboard-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 23px; }
.dashboard-head small, .dashboard-head b { display: block; }
.dashboard-head small { color: var(--muted); font-size: 11px; }
.dashboard-head b { margin-top: 3px; font-size: 25px; }
.dashboard-head > span { color: #98a2b3; letter-spacing: 3px; }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dashboard-metrics article { position: relative; padding: 18px 15px; background: #f7f9fc; border: 1px solid #eaecf0; border-radius: 15px; }
.dashboard-metrics small, .dashboard-metrics b { display: block; }
.dashboard-metrics small { color: var(--muted); font-size: 9px; }
.dashboard-metrics b { margin-top: 6px; font-size: 13px; }
.dashboard-metrics i { display: block; width: 8px; height: 8px; margin-top: 12px; border-radius: 50%; }
.metric-blue { background: var(--blue); }.metric-green { background: var(--green); }.metric-violet { background: #8b4ade; }
.dashboard-chart { height: 190px; display: flex; align-items: flex-end; gap: 12px; margin-top: 24px; padding: 22px 20px 0; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to bottom, transparent 0, transparent 44px, #f2f4f7 45px); border-radius: 18px 18px 0 0; }
.dashboard-chart span { flex: 1; height: var(--h); min-height: 15px; background: linear-gradient(#4d82ef, #2563eb); border-radius: 7px 7px 2px 2px; }
.dashboard-services { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 24px; }
.dashboard-services b, .dashboard-services small { display: block; }
.dashboard-services small { color: var(--muted); font-size: 10px; }
.dashboard-services button { padding: 11px 14px; color: var(--white); background: var(--blue); border: 0; border-radius: 10px; font-weight: 700; }

.master-invite-section { overflow: hidden; background: #eef5ff; }
.master-invite-grid { display: grid; grid-template-columns: 1fr 0.92fr; align-items: center; gap: 86px; }
.master-invite-copy h2 { margin: 16px 0 20px; font-size: clamp(40px, 4.8vw, 62px); line-height: 1.03; letter-spacing: -0.05em; }
.master-invite-copy > p:not(.eyebrow) { max-width: 680px; color: var(--muted); }
.master-invite-list { display: grid; gap: 13px; margin: 32px 0 0; padding: 0; list-style: none; }
.master-invite-list li { display: grid; grid-template-columns: 42px 1fr; align-items: start; gap: 14px; padding: 15px; background: rgba(255,255,255,0.8); border: 1px solid #d9e6fb; border-radius: 16px; }
.master-invite-list li > b { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--blue); border-radius: 13px; font-size: 13px; }
.master-invite-list strong, .master-invite-list small { display: block; }
.master-invite-list strong { color: var(--ink); font-size: 14px; }
.master-invite-list small { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.master-invite-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.invite-story-card { width: min(355px, 86%); aspect-ratio: 9 / 16; display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; color: var(--white); background: linear-gradient(160deg, #2159d8 0%, #7138d7 48%, #062d55 100%); border: 10px solid var(--white); border-radius: 34px; box-shadow: 0 35px 85px rgba(25,67,153,0.27); transform: rotate(2.5deg); }
.invite-brand { position: absolute; top: 44px; padding: 8px 13px; color: var(--blue); background: var(--white); border-radius: 999px; font-size: 11px; font-weight: 850; letter-spacing: 0.08em; }
.invite-spark { margin-bottom: auto; padding-top: 180px; text-align: center; color: rgba(255,255,255,0.45); font-size: 68px; }
.invite-story-card h3 { margin: 0 0 19px; font-size: 31px; line-height: 1.02; letter-spacing: -0.04em; }
.invite-service { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 10px; padding: 14px; color: var(--ink); background: rgba(255,255,255,0.94); border-radius: 18px; }
.invite-service i { width: 44px; height: 44px; background: #dce8ff; border-radius: 50%; }
.invite-service b, .invite-service small { display: block; }
.invite-service b { font-size: 12px; }.invite-service small { color: var(--muted); font-size: 9px; }.invite-service strong { color: var(--blue); font-size: 12px; }
.invite-share-pill { position: absolute; top: 105px; right: -22px; padding: 13px 17px; color: var(--white); background: var(--blue); border-radius: 14px; box-shadow: var(--shadow); font-size: 12px; font-weight: 750; transform: rotate(-3deg); }
.invite-master-result { position: absolute; left: -24px; bottom: 75px; width: 255px; padding: 18px; background: var(--white); border: 2px solid #2dbb68; border-radius: 18px; box-shadow: var(--shadow); transform: rotate(-2deg); }
.invite-master-result span { display: inline-flex; padding: 5px 9px; color: #087a38; background: #dff8e9; border-radius: 999px; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.invite-master-result b, .invite-master-result small { display: block; }.invite-master-result b { margin-top: 9px; font-size: 13px; }.invite-master-result small { margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.4; }

.master-steps { background: var(--white); }
.master-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.master-step-grid li { min-height: 280px; padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; }
.master-step-grid li > span { color: var(--blue); font-size: 12px; font-weight: 850; }
.master-step-grid h3 { margin: 62px 0 13px; font-size: 23px; line-height: 1.15; letter-spacing: -0.03em; }
.master-step-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.master-step-grid .master-step-accent { color: var(--white); background: linear-gradient(145deg, #2867e8, #1746c7); border-color: transparent; box-shadow: var(--shadow); }
.master-step-grid .master-step-accent > span { color: #c9d9ff; }
.master-step-grid .master-step-accent p { color: #dbe7ff; }

.master-trust { padding-top: 0; }
.master-trust-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; align-items: center; gap: 75px; min-height: 610px; overflow: hidden; padding: 52px; color: var(--white); background: #183eae; border-radius: 40px; }
.master-trust-grid > img { width: 100%; max-height: 500px; object-fit: contain; }
.master-trust-grid h2 { margin-bottom: 19px; font-size: clamp(40px, 4.8vw, 62px); line-height: 1.03; letter-spacing: -0.05em; }
.master-trust-grid p { color: #c4d7ff; }
.master-trust-grid ul { margin: 25px 0 0; padding: 0; list-style: none; }
.master-trust-grid li { margin: 11px 0; color: #d4e1ff; font-size: 14px; }
.master-trust-grid li::before { content: "✓"; margin-right: 10px; color: #64e58d; font-weight: 900; }
.master-download .download-card { background: linear-gradient(135deg, #183eae, #0e2b89); }

@media (max-width: 1000px) {
  .hero { padding-top: 138px; }
  .hero-grid, .split-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-copy .hero-lead, .hero-copy .version-notice { margin-inline: auto; }
  .hero-copy .store-row, .hero-proof { justify-content: center; }
  .hero-visual { margin-top: 30px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(3) { border-left: 1px solid rgba(255,255,255,0.11); }
  .split-grid { gap: 60px; }
  .service-flow-grid { grid-template-columns: 1fr 1fr; }
  .steps-copy { max-width: 720px; }
  .audience-card { min-height: 720px; }
  .audience-card img { right: -90px; }
  .register-grid, .faq-grid { gap: 55px; }
  .safety-grid { grid-template-columns: 100px 1fr; }
  .safety-tags { grid-column: 2; }
  .download-card > img { right: -80px; }
  .master-hero-grid, .master-tools-grid, .master-invite-grid { grid-template-columns: 1fr; }
  .master-hero-copy { text-align: center; }
  .master-hero-copy .eyebrow, .master-hero-copy > p { margin-inline: auto; }
  .master-actions, .master-hero-proof { justify-content: center; }
  .master-hero-visual { margin-top: 15px; }
  .master-invite-grid { gap: 30px; }
  .master-invite-visual { min-height: 620px; }
  .master-step-grid { grid-template-columns: 1fr 1fr; }
  .master-trust-grid { gap: 38px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { width: min(100% - 28px, 620px); }
  .header-inner { height: 70px; }
  .main-nav { display: none; }
  .brand { font-size: 19px; }
  .brand img { width: 36px; height: 36px; }
  .button-small { min-height: 40px; padding-inline: 16px; }
  .page-switch a { min-height: 34px; padding-inline: 10px; font-size: 11px; }
  .hero { min-height: 0; padding: 124px 0 72px; }
  h1 { font-size: clamp(43px, 12vw, 60px); }
  .hero-lead { font-size: 18px; }
  .hero-visual { min-height: 530px; transform: scale(0.92); margin: -10px -20px -35px; }
  .phone-card { width: 318px; min-height: 545px; }
  .phone-card img { height: 394px; }
  .card-trust { left: 1%; }
  .card-chat { right: 1%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div { min-height: 94px; padding: 18px 14px; }
  .trust-grid span { font-size: 12px; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .steps-copy h2, .register-grid h2, .safety-grid h2, .faq-title h2 { font-size: 40px; }
  .problem-grid, .audience-grid, .register-grid, .faq-grid, .flow-proof { grid-template-columns: 1fr; }
  .problem-card { min-height: 360px; padding: 30px; }
  .problem-card h3 { font-size: 27px; }
  .recommendation-pill { left: 24px; right: auto; }
  .split-grid { gap: 50px; }
  .steps-list { margin-left: 24px; }
  .service-flow-grid { grid-template-columns: 1fr; }
  .service-flow-grid li { min-height: 220px; }
  .network-card { height: 520px; }
  .steps-visual > p { right: -3px; bottom: 20px; max-width: 290px; }
  .audience-card { min-height: 670px; padding: 30px; }
  .audience-card h3 { font-size: 28px; }
  .audience-card img { right: -70px; bottom: -80px; width: 390px; height: 390px; }
  .register-grid { gap: 32px; }
  .register-grid h2, .faq-title { position: static; }
  .safety-grid { grid-template-columns: 1fr; padding: 34px 28px; }
  .safety-mark { width: 76px; height: 76px; border-radius: 22px; font-size: 34px; }
  .safety-tags { grid-column: auto; }
  .faq-grid { gap: 36px; }
  .download-section { padding: 12px 0 60px; }
  .download-card { min-height: 560px; padding: 48px 28px; align-items: flex-start; border-radius: 30px; }
  .download-copy h2 { font-size: 43px; }
  .download-card > img { width: 270px; right: -75px; bottom: -40px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { align-items: flex-start; }
  .master-hero { min-height: 0; padding: 122px 0 70px; }
  .master-hero-copy h1 { font-size: clamp(46px, 12vw, 62px); }
  .master-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .master-hero-visual { min-height: 480px; }
  .master-hero-visual > img { max-height: 465px; }
  .metric-one { left: 0; }.metric-two { right: 0; }
  .master-stat-grid { grid-template-columns: 1fr 1fr; }
  .master-stat-grid div:nth-child(3) { border-left: 1px solid rgba(255,255,255,0.1); }
  .master-compare, .master-tools-grid, .master-trust-grid { grid-template-columns: 1fr; }
  .compare-card { min-height: 630px; padding: 30px; }
  .compare-card h3 { font-size: 28px; }
  .dashboard-mockup { min-height: 470px; padding: 22px 17px; transform: none; }
  .dashboard-chart { gap: 7px; padding-inline: 12px; }
  .master-step-grid { grid-template-columns: 1fr; }
  .master-step-grid li { min-height: 220px; }
  .master-step-grid h3 { margin-top: 42px; }
  .master-trust-grid { padding: 34px 27px; border-radius: 30px; }
  .master-trust-grid > img { max-height: 400px; }
  .master-invite-visual { min-height: 585px; }
  .invite-share-pill { right: 0; }
  .invite-master-result { left: 0; bottom: 45px; }
}

@media (max-width: 470px) {
  .store-row { flex-direction: column; }
  .store-badge-link { width: 100%; justify-content: center; }
  .store-button { width: 100%; justify-content: center; }
  .hero-proof { flex-direction: column; align-items: flex-start; width: max-content; margin-inline: auto; gap: 9px; }
  .hero-visual { transform: scale(0.82); margin: -30px -60px -65px; }
  .floating-card { padding: 11px 13px; }
  .floating-card b { font-size: 12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div, .trust-grid div:nth-child(3) { border-left: 1px solid rgba(255,255,255,0.11); }
  .problem-card { min-height: 405px; }
  .fake-results { right: 20px; }
  .audience-card { min-height: 700px; }
  .register-points article { grid-template-columns: 40px 1fr; gap: 12px; }
  .download-copy h2 { font-size: 38px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .masters-page .brand span { display: none; }
  .master-actions { flex-direction: column; }
  .master-actions .button { width: 100%; }
  .master-hero-proof { flex-direction: column; align-items: center; gap: 7px; }
  .master-stat-grid { grid-template-columns: 1fr; }
  .master-stat-grid div, .master-stat-grid div:nth-child(3) { border-left: 1px solid rgba(255,255,255,0.1); }
  .dashboard-metrics { grid-template-columns: 1fr; }
  .dashboard-metrics article { padding: 11px 13px; }
  .dashboard-metrics i { margin-top: 7px; }
  .dashboard-chart { height: 150px; }
  .dashboard-services { align-items: flex-start; flex-direction: column; }
}

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