@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, ul, ol { margin: 0; }
  ul, ol { padding: 0; }
  img, svg { display: block; max-width: 100%; }
  button, input, select, textarea { font: inherit; }
  button, summary { cursor: pointer; }
  a { color: inherit; text-decoration: none; }
}

@layer base {
  :root {
    --bg: #090b12;
    --bg-deep: #06070b;
    --panel: #11151f;
    --panel-soft: #151a26;
    --panel-light: #f4f7fb;
    --text: #f6f8fd;
    --text-dark: #0d1018;
    --muted: #9aa4b8;
    --muted-dark: #566176;
    --line: rgba(255, 255, 255, .1);
    --line-dark: rgba(13, 16, 24, .1);
    --blue: #1877f2;
    --cyan: #25f4ee;
    --pink: #fe2c55;
    --green: #65e8ad;
    --amber: #ffcb6b;
    --gradient: linear-gradient(115deg, var(--blue), var(--cyan) 53%, var(--pink));
    --gradient-soft: linear-gradient(135deg, rgba(24,119,242,.16), rgba(37,244,238,.08) 52%, rgba(254,44,85,.13));
    --shadow: 0 30px 90px rgba(0, 0, 0, .35);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 34px;
    --container: 1180px;
  }

  body {
    min-width: 320px;
    overflow-x: hidden;
    background:
      radial-gradient(900px 500px at 20% -10%, rgba(24,119,242,.14), transparent 70%),
      var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .17;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  }

  ::selection { background: rgba(37, 244, 238, .28); color: #fff; }
  :focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
  h1, h2, h3, strong { letter-spacing: -.025em; }
  h1, h2, h3 { line-height: 1.1; }
  p { color: var(--muted); }
  section[id] { scroll-margin-top: 96px; }

  .container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
  .section { padding: 124px 0; position: relative; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

  .skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; transform: translateY(-160%); padding: 10px 16px; border-radius: 10px; background: #fff; color: #111; font-weight: 800; }
  .skip-link:focus { transform: translateY(0); }

  .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 82px;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, height .25s ease;
  }
  .site-header.is-scrolled { height: 72px; background: rgba(9,11,18,.82); border-color: var(--line); backdrop-filter: blur(18px); }
  .nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
  .brand { display: flex; align-items: center; gap: 8px; min-width: 210px; }
  .brand img { width: 76px; height: 49px; object-fit: contain; }
  .brand-copy { display: grid; line-height: 1.1; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
  .site-nav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 30px); }
  .site-nav a { position: relative; color: #c3cad7; font-size: 13px; font-weight: 650; transition: color .2s ease; }
  .site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--cyan); transition: right .25s ease; }
  .site-nav a:hover, .site-nav a.is-active { color: #fff; }
  .site-nav a:hover::after, .site-nav a.is-active::after { right: 0; }
  .nav-cta { padding: 11px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.06); }
  .nav-cta:hover { border-color: var(--cyan); background: rgba(37,244,238,.08); }

  .nav-controls { position: relative; z-index: 3; display: flex; align-items: center; gap: 10px; }
  .locale-switch { position: relative; flex: 0 0 auto; }
  .locale-trigger { display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #e9eef8; background: rgba(255,255,255,.05); font-size: 12px; font-weight: 750; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
  .locale-trigger:hover { border-color: rgba(37,244,238,.5); background: rgba(37,244,238,.07); }
  .locale-trigger[aria-expanded="true"] { border-color: var(--cyan); background: rgba(37,244,238,.1); box-shadow: 0 0 0 3px rgba(37,244,238,.08); }
  .locale-globe { flex: 0 0 auto; width: 16px; height: 16px; fill: none; stroke: var(--cyan); stroke-width: 1.6; }
  .locale-flag { font-size: 15px; line-height: 1; }
  .locale-current { max-width: 116px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .locale-code { display: none; color: #93a0b6; font-size: 10px; font-weight: 850; letter-spacing: .1em; }
  .locale-chevron { flex: 0 0 auto; width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .7; transition: transform .2s ease; }
  .locale-trigger[aria-expanded="true"] .locale-chevron { transform: rotate(180deg); }

  .locale-menu { position: absolute; right: 0; top: calc(100% + 10px); z-index: 130; width: 236px; max-height: min(62vh, 430px); overflow-y: auto; padding: 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(11,14,21,.98); box-shadow: 0 24px 54px rgba(0,0,0,.5); backdrop-filter: blur(18px); list-style: none; }
  .locale-menu[hidden] { display: none; }
  .locale-option { display: grid; grid-template-columns: 21px minmax(0, 1fr) auto 14px; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 12px; color: #ccd4e2; font-size: 13px; font-weight: 650; transition: background .18s ease, color .18s ease; }
  .locale-option:hover { color: #fff; background: rgba(255,255,255,.07); }
  .locale-option:focus-visible { outline: none; color: #fff; background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px var(--cyan); }
  .locale-option[aria-selected="true"] { color: #fff; background: rgba(37,244,238,.11); }
  .locale-option-flag { font-size: 17px; line-height: 1; }
  .locale-option-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .locale-option-code { color: #7f8a9e; font-size: 9px; font-weight: 850; letter-spacing: .1em; }
  .locale-option-check { color: var(--cyan); font-size: 12px; font-weight: 900; opacity: 0; }
  .locale-option[aria-selected="true"] .locale-option-check { opacity: 1; }

  .locale-native { height: 42px; min-width: 152px; padding: 0 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #e9eef8; background: #0d111a; color-scheme: dark; cursor: pointer; font-size: 12px; font-weight: 700; }
  .js .locale-native, .js .locale-native-label { display: none; }
  html:not(.js) .locale-trigger, html:not(.js) .locale-menu { display: none; }
  .nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: #fff; }
  .nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .25s ease, opacity .25s ease; }

  .button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: -.01em; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
  .button:hover { transform: translateY(-2px); }
  .button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .button-primary { color: #071015; background: var(--gradient); box-shadow: 0 14px 34px rgba(37,244,238,.16); }
  .button-primary:hover { box-shadow: 0 18px 42px rgba(37,244,238,.24); }
  .button-ghost { color: #fff; border-color: var(--line); background: rgba(255,255,255,.035); }
  .button-ghost:hover { border-color: rgba(37,244,238,.55); background: rgba(37,244,238,.06); }

  .eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--cyan); font-size: 11px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
  .eyebrow > span:first-child { width: 26px; height: 1px; background: var(--gradient); }
  .section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: end; gap: 70px; margin-bottom: 52px; }
  .section-heading h2, .contact-copy h2 { max-width: 720px; margin-top: 14px; font-size: clamp(36px, 4.7vw, 64px); }
  .section-heading > p { max-width: 510px; font-size: 16px; }
  .section-heading.centered { grid-template-columns: 1fr; justify-items: center; gap: 18px; text-align: center; }
  .section-heading.centered p { max-width: 660px; }

  [data-reveal] { opacity: 1; transform: none; }
  [data-reveal].is-visible { animation: reveal-in .7s cubic-bezier(.2,.7,.2,1) both; animation-delay: var(--reveal-delay, 0ms); }
  @keyframes reveal-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes spin { to { transform: rotate(360deg); } }
  .back-to-top { position: fixed; right: 24px; bottom: 24px; z-index: 70; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(17,21,31,.86); color: #fff; backdrop-filter: blur(12px); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s ease; }
  .back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
}

@layer sections {
  .hero { min-height: 760px; display: grid; align-items: center; padding: 136px 0 82px; position: relative; overflow: hidden; }
  .hero::before { content: ""; position: absolute; width: 740px; height: 740px; right: -280px; top: -190px; border: 1px solid rgba(255,255,255,.055); border-radius: 50%; box-shadow: inset 0 0 90px rgba(37,244,238,.025); }
  .hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr); align-items: center; gap: 60px; }
  .hero-copy h1 { max-width: 700px; margin: 22px 0 24px; font-size: clamp(50px, 5.6vw, 82px); letter-spacing: -.062em; }
  .hero-copy h1 em { display: block; color: transparent; font-style: normal; background: var(--gradient); background-clip: text; -webkit-background-clip: text; }
  .hero-lead { max-width: 650px; font-size: clamp(16px, 1.5vw, 19px); }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
  .hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; list-style: none; color: #b7c0d0; font-size: 12px; }
  .hero-trust li > span:first-child { color: var(--green); margin-right: 5px; }
  .hero-visual { position: relative; display: grid; place-items: center; padding: 12px 0; }
  .glow { position: absolute; border-radius: 50%; filter: blur(30px); opacity: .28; }
  .glow-blue { width: 270px; height: 270px; left: 2%; top: 4%; background: var(--blue); }
  .glow-pink { width: 230px; height: 230px; right: 0; bottom: 4%; background: var(--pink); }

  .rate-card { position: relative; width: min(100%, 520px); padding: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: linear-gradient(155deg, rgba(25,31,45,.96), rgba(11,14,22,.98)); box-shadow: var(--shadow); }
  .rate-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.07), transparent 28%); }
  .rate-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .rate-head strong { display: block; font-size: 15px; }
  .rate-head small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
  .rate-chip { flex: 0 0 auto; padding: 6px 10px; border-radius: 999px; color: #071015; background: var(--gradient); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
  .rate-primary { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 18px; }
  .rate-eyebrow { display: block; color: var(--cyan); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
  .rate-primary strong { display: block; margin-top: 5px; font-size: 19px; }
  .rate-best { flex: 0 0 auto; padding: 5px 9px; border: 1px solid rgba(101,232,173,.22); border-radius: 999px; color: var(--green); background: rgba(101,232,173,.08); font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
  .rate-fees { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; margin-top: 18px; }
  .rate-fee { padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
  .rate-fee > span { display: block; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .rate-fee > strong { display: block; margin-top: 6px; font-size: 34px; font-weight: 900; }
  .rate-fee > strong span { margin-left: 2px; color: var(--cyan); font-size: .55em; }
  .rate-fee > small { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; }
  .rate-fee-sale { border-color: rgba(37,244,238,.35); background: linear-gradient(150deg, rgba(37,244,238,.1), rgba(255,255,255,.02)); }
  .rate-arrow { color: var(--cyan); font-size: 18px; font-weight: 900; }
  .rate-highlight { display: flex; gap: 9px; align-items: flex-start; margin-top: 16px; padding: 12px 14px; border: 1px solid rgba(101,232,173,.16); border-radius: 14px; background: rgba(101,232,173,.055); color: #cfd7e4; font-size: 10px; }
  .rate-highlight > span:first-child { flex: 0 0 16px; height: 16px; display: grid; place-items: center; border-radius: 50%; color: #071015; background: var(--green); font-size: 9px; font-weight: 900; }
  .rate-split { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 14px; }
  .rate-split > div { padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
  .rate-split span { display: block; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .rate-split strong { display: block; margin-top: 6px; font-size: 15px; }
  .rate-split small { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; }
  .rate-target { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 14px; padding: 13px 15px; border-radius: 14px; background: rgba(255,255,255,.04); }
  .rate-target span { color: var(--muted); font-size: 10px; font-weight: 750; }
  .rate-target strong { font-size: 15px; }

  .platform-band { border-block: 1px solid var(--line); background: rgba(255,255,255,.02); }
  .platform-shell { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
  .platform-shell > p { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
  .platform-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: clamp(22px, 5vw, 62px); }
  .platform-list > span { display: flex; align-items: center; gap: 9px; color: #d8deea; font-size: 14px; font-weight: 750; }
  .platform-glyph { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; color: #fff; font-size: 14px; }
  .meta-bg { background: var(--blue); }.tiktok-bg { background: #050509; text-shadow: -1px 0 var(--cyan), 1px 0 var(--pink); }.google-bg { background: conic-gradient(from -45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4); }.bing-bg { background: #008373; }

  .services { background: var(--panel-light); color: var(--text-dark); }
  .services .section-kicker { color: var(--blue); }.services p { color: var(--muted-dark); }
  .platform-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .platform-brand-tile { display: grid; place-content: center; justify-items: center; gap: 6px; padding: 34px 24px; border-radius: var(--radius); color: #fff; background: linear-gradient(150deg, #141a26, var(--text-dark)); text-align: center; }
  .platform-brand-tile img { width: 104px; }
  .platform-brand-tile strong { margin-top: 8px; font-size: 21px; }
  .platform-brand-tile small { color: #9aa4b8; font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
  .platform-service-card { padding: 28px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
  .platform-service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(25,35,55,.1); }
  .platform-service-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 14px; color: #fff; font-size: 20px; font-weight: 900; }
  .platform-service-card h3 { font-size: 24px; }
  .platform-service-card p { margin-top: 11px; font-size: 13px; }

  .account-pricing { color: var(--text-dark); background: linear-gradient(180deg, #f8fafd, #eaeff8); }
  .pricing-heading { max-width: 780px; margin: 0 auto 44px; text-align: center; }
  .pricing-heading h2 { font-size: clamp(34px, 4.4vw, 58px); font-weight: 900; }
  .pricing-heading p { margin-top: 16px; color: var(--muted-dark); font-size: 14px; }

  .account-grid { display: grid; grid-template-columns: repeat(2, 1fr); align-items: start; gap: 26px; }
  .account-card { position: relative; overflow: hidden; padding: 34px 30px 30px; border: 1px solid rgba(13,16,24,.07); border-radius: 26px; background: #fff; box-shadow: 0 18px 46px rgba(23,33,54,.08); }
  .account-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, #1877f2, var(--cyan)); }
  .account-card-agency::before { background: linear-gradient(90deg, #1877f2, #8b5cf6); }
  .account-badge { display: inline-block; padding: 6px 12px; border: 1px solid rgba(15,82,186,.16); border-radius: 999px; color: #0f52ba; background: #eaf2fe; font-size: 10px; font-weight: 850; letter-spacing: .02em; }
  .account-card h3 { margin: 18px 0 12px; font-size: clamp(24px, 2.4vw, 31px); font-weight: 900; }
  .account-desc { max-width: 420px; color: var(--muted-dark); font-size: 13px; }

  .account-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 22px; }
  .stat-box { padding: 16px; border: 1px solid rgba(13,16,24,.08); border-radius: 16px; background: #fff; }
  .stat-box-fee { border-color: rgba(15,82,186,.12); background: #f4f7fd; }
  .stat-label { display: block; color: var(--muted-dark); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  .stat-value { display: block; margin-top: 9px; color: var(--text-dark); font-size: clamp(19px, 1.8vw, 23px); font-weight: 900; }
  .stat-note { display: block; margin-top: 10px; color: var(--muted-dark); font-size: 10px; font-weight: 650; }
  .fee-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 9px; }
  .fee-value { color: var(--text-dark); font-size: clamp(26px, 2.6vw, 33px); font-weight: 900; }
  .fee-value span { margin-left: 2px; color: #0f52ba; font-size: .62em; font-weight: 850; }
  .fee-tag { color: var(--muted-dark); font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  /* Gradient darkened from the reference so white text keeps a 5:1 contrast ratio. */
  .fee-pill { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; padding: 9px 13px; border-radius: 12px; color: #fff; background: linear-gradient(90deg, #0d4fb5, #1668d8); }
  .account-card-agency .fee-pill { background: linear-gradient(90deg, #5b21b6, #7c3aed); }
  .fee-pill strong { font-size: 19px; font-weight: 900; }
  .fee-pill strong span { margin-left: 1px; font-size: .68em; opacity: .92; }
  .fee-pill small { font-size: 9px; font-weight: 800; letter-spacing: .04em; }

  .account-list { display: grid; gap: 11px; padding-top: 21px; border-top: 1px solid rgba(13,16,24,.08); list-style: none; }
  .account-list li { display: grid; grid-template-columns: 17px 1fr; align-items: start; gap: 10px; color: #273146; font-size: 12px; font-weight: 650; }
  .account-list li::before { content: "✓"; width: 17px; height: 17px; display: grid; place-items: center; margin-top: 1px; border-radius: 50%; color: #fff; background: #1668d8; font-size: 9px; font-weight: 900; }
  .account-card-agency .account-list li::before { background: #6d33e0; }

  .refund { overflow: hidden; }
  .refund::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(620px 420px at 15% 30%, rgba(101,232,173,.07), transparent 70%); }
  .refund-shell { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: start; }
  .refund-main h2 { max-width: 520px; margin-top: 14px; font-size: clamp(34px, 4.2vw, 56px); }
  .refund-main > p { max-width: 520px; margin-top: 20px; font-size: 15px; }
  .refund-badge { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; padding: 14px 20px; border: 1px solid rgba(101,232,173,.25); border-radius: 18px; background: rgba(101,232,173,.07); }
  .refund-badge strong { color: var(--green); font-size: 30px; font-weight: 900; }
  .refund-badge span { color: #cfd7e4; font-size: 11px; font-weight: 750; }
  .refund-points { display: grid; gap: 14px; }
  .refund-point { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
  .refund-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: #071015; background: var(--gradient); font-size: 14px; font-weight: 900; }
  .refund-point strong { display: block; margin-bottom: 4px; color: #fff; font-size: 14px; }
  .refund-point span { color: var(--muted); font-size: 12px; }
  .refund-note { padding: 14px 16px; border: 1px solid rgba(255,203,107,.22); border-radius: 14px; color: #f3d596; background: rgba(255,203,107,.06); font-size: 11px; }
  .refund-cta { width: 100%; }
  .refund-cta b { padding: 4px 10px; border-radius: 999px; background: rgba(7,16,21,.14); font-size: 12px; }

  .payment { color: var(--text-dark); background: var(--panel-light); }
  .payment .section-kicker { color: var(--blue); }
  .payment .section-heading p { color: var(--muted-dark); }
  .payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 16px; }
  .payment-card { display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 40px rgba(23,33,54,.06); }
  .payment-card-head { display: grid; gap: 4px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line-dark); }
  .payment-card-head strong { font-size: 18px; font-weight: 900; }
  .payment-card-head span { color: var(--muted-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .payment-address-label { color: var(--muted-dark); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  .payment-address { display: block; margin-top: 9px; padding: 13px; border: 1px solid rgba(13,16,24,.1); border-radius: 12px; background: #f6f8fc; color: #16203a; font: 600 12px/1.55 ui-monospace, SFMono-Regular, Menlo, monospace; word-break: break-all; }
  .payment-case-note { display: block; margin-top: 9px; color: #8a5a00; font-size: 10px; font-weight: 700; }
  .payment-copy { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; min-height: 44px; margin-top: auto; padding: 0 16px; border: 1px solid rgba(15,82,186,.2); border-radius: 999px; color: #0f52ba; background: #eaf2fe; font-size: 12px; font-weight: 800; transition: background .2s ease, border-color .2s ease, color .2s ease; }
  .payment-copy:hover { border-color: #0f52ba; background: #dbe9fe; }
  .payment-copy svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .payment-copy.is-copied { color: #0b6b3a; border-color: rgba(11,107,58,.28); background: #e3f7ec; }
  .payment-address + .payment-copy, .payment-case-note + .payment-copy { margin-top: 16px; }
  .payment-warning { max-width: 820px; margin: 26px auto 0; padding: 14px 18px; border: 1px solid rgba(190,60,20,.2); border-radius: 14px; background: #fdf0e8; color: #7d2d10; font-size: 12px; text-align: center; }
  .payment-warning strong { font-weight: 900; }
  .payment-confirm { max-width: 820px; margin: 12px auto 0; color: var(--muted-dark); font-size: 11px; text-align: center; }

  .contact { overflow: hidden; background: #0a0d14; }
  .contact::before { content: ""; position: absolute; width: 700px; height: 700px; left: -430px; bottom: -470px; border-radius: 50%; background: rgba(24,119,242,.13); filter: blur(30px); }
  .contact-shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
  .contact-copy > p { max-width: 500px; margin-top: 22px; font-size: 15px; }
  .telegram-card { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding: 18px 20px; border: 1px solid rgba(37,244,238,.28); border-radius: 18px; background: linear-gradient(140deg, rgba(37,244,238,.1), rgba(255,255,255,.03)); transition: border-color .2s ease, transform .2s ease; }
  .telegram-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
  .telegram-icon { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: #071015; background: var(--gradient); font-size: 19px; }
  .telegram-copy { display: grid; gap: 3px; }
  .telegram-copy strong { color: #fff; font-size: 14px; }
  .telegram-copy small { color: var(--muted); font-size: 11px; }
  .telegram-arrow { margin-left: auto; color: var(--cyan); font-size: 18px; font-weight: 900; }
  .contact-points { display: grid; gap: 15px; margin-top: 32px; }.contact-points > div { display: grid; grid-template-columns: 36px 1fr; gap: 12px; padding-top: 15px; border-top: 1px solid var(--line); }.contact-points > div > span { color: var(--cyan); font-size: 9px; font-weight: 900; }.contact-points p { font-size: 11px; }.contact-points strong { display: block; margin-bottom: 3px; color: #fff; font-size: 13px; }
  .contact-form { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel); box-shadow: var(--shadow); }
  .no-script-note { margin-bottom: 18px; padding: 12px 14px; border: 1px solid rgba(255,203,107,.24); border-radius: 12px; color: #f3d596; background: rgba(255,203,107,.06); font-size: 11px; }
  .form-row.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
  .field { margin-bottom: 17px; }.field label { display: block; margin-bottom: 8px; color: #d9dfeb; font-size: 11px; font-weight: 750; }.field label span { color: var(--pink); }
  .field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; outline: none; color: #fff; background: #0d111a; transition: border-color .2s ease, box-shadow .2s ease; }.field input, .field select { height: 48px; padding: 0 13px; }.field textarea { resize: vertical; min-height: 126px; padding: 12px 13px; }.field select { color-scheme: dark; }.field input::placeholder, .field textarea::placeholder { color: #8792a7; }
  .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(37,244,238,.08); }.field [aria-invalid="true"] { border-color: var(--pink); }
  .field-error { display: block; min-height: 14px; margin-top: 4px; color: #ff8099; font-size: 9px; }
  .honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
  .consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 10px; cursor: pointer; }.consent input { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--cyan); }.consent-error { margin-left: 25px; }
  .submit-button { width: 100%; margin-top: 18px; border: 0; }.submit-button:disabled { cursor: wait; opacity: .65; transform: none; }.button-spinner { display: none; width: 17px; height: 17px; border: 2px solid rgba(7,16,21,.3); border-top-color: #071015; border-radius: 50%; animation: spin .7s linear infinite; }.submit-button.is-loading .button-spinner { display: block; }.submit-button.is-loading .button-label { opacity: .75; }
  .form-status { min-height: 22px; margin-top: 12px; font-size: 11px; text-align: center; }.form-status.is-success { color: var(--green); }.form-status.is-error { color: #ff8099; }

  .site-footer { padding: 76px 0 24px; border-top: 1px solid var(--line); background: var(--bg-deep); }
  .footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 60px; }.footer-brand img { width: 138px; }.footer-brand p { max-width: 340px; margin-top: 14px; font-size: 12px; }.footer-column { display: flex; flex-direction: column; gap: 10px; }.footer-column strong { margin-bottom: 5px; color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }.footer-column a, .footer-column p { color: var(--muted); font-size: 11px; }.footer-column a:hover { color: var(--cyan); }.footer-standard p { line-height: 1.9; }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 20px; border-top: 1px solid var(--line); color: #8792a7; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
}

@layer utilities {
  @media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 820px; }.hero-visual { width: min(100%, 680px); margin: 0 auto; }.hero { padding-top: 150px; }
    .platform-service-grid { grid-template-columns: repeat(2, 1fr); }
    .refund-shell { gap: 45px; }.contact-shell { gap: 50px; }
  }

  @media (max-width: 860px) {
    .section { padding: 90px 0; }.section-heading { grid-template-columns: 1fr; align-items: start; gap: 20px; margin-bottom: 38px; }
    .js .nav-toggle { display: block; position: relative; z-index: 3; }.js .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }.js .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }.js .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
    .js .site-nav { position: fixed; inset: 0; display: grid; align-content: center; justify-items: center; gap: 25px; opacity: 0; visibility: hidden; background: rgba(7,9,14,.97); transform: translateY(-12px); transition: .25s ease; }.js .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }.js .site-nav a { font-size: 20px; }.js .nav-cta { margin-top: 10px; }
    html:not(.js) .site-header { position: relative; height: auto; background: var(--bg); }
    html:not(.js) .nav-shell { min-height: 92px; height: auto; flex-wrap: wrap; padding-block: 12px; }
    html:not(.js) .site-nav { width: 100%; justify-content: center; flex-wrap: wrap; gap: 12px 22px; padding-bottom: 12px; }
    html:not(.js) .site-nav a { font-size: 12px; }
    .platform-shell { padding: 24px 0; flex-direction: column; align-items: flex-start; }.platform-list { justify-content: flex-start; }
    .refund-shell, .contact-shell { grid-template-columns: 1fr; gap: 50px; }
    .account-grid { grid-template-columns: 1fr; gap: 20px; }.account-desc { max-width: none; }
    .payment-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }.footer-standard { display: none; }
  }

  @media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }.site-header, .site-header.is-scrolled { height: 68px; }.brand img { width: 63px; }.brand-copy small { display: none; }.brand { min-width: 0; }
    .nav-controls { gap: 4px; }.locale-current { display: none; }.locale-code { display: inline; }.locale-trigger { gap: 6px; height: 40px; padding: 0 10px; }.locale-menu { width: 224px; top: calc(100% + 8px); }.locale-native { min-width: 132px; }
    .hero { min-height: auto; padding: 116px 0 70px; }.hero-copy h1 { font-size: clamp(42px, 13vw, 62px); }.hero-actions { display: grid; }.hero-actions .button { width: 100%; }.hero-trust { gap: 10px 18px; }
    .hero-visual { margin-top: 26px; }
    .rate-card { padding: 18px; border-radius: 22px; }.rate-fees { grid-template-columns: 1fr; gap: 10px; }.rate-arrow { transform: rotate(90deg); justify-self: center; }.rate-fee > strong { font-size: 30px; }.rate-split { grid-template-columns: 1fr; }
    .platform-list { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 18px; }
    .platform-service-grid { grid-template-columns: 1fr; }.platform-brand-tile { padding: 28px 20px; }.platform-service-card { padding: 24px; }
    .account-card { padding: 28px 22px 24px; border-radius: 22px; }.account-stats { grid-template-columns: 1fr; gap: 12px; }.pricing-heading { margin-bottom: 32px; }
    .refund-point { grid-template-columns: 1fr; gap: 12px; }
    .payment-card, .contact-form { padding: 22px; }.form-row.two-columns { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
  }
}
