:root {
  --background: #ffffff;
  --foreground: #0a1729;
  --card: #ffffff;
  --card-foreground: #0a1729;
  --popover: #ffffff;
  --popover-foreground: #0a1729;
  --primary: #087fce;
  --primary-foreground: #ffffff;
  --secondary: #edf4f9;
  --secondary-foreground: #0a1729;
  --muted: #edf4f9;
  --muted-foreground: #5a6a7d;
  --accent: #e4f3fc;
  --accent-foreground: #075e9c;
  --destructive: #c72c41;
  --border: #d9e3ed;
  --input: #cbd8e5;
  --ring: #149ee7;
  --radius: 0.75rem;
  --ink: #071321;
  --navy: #0a1a2f;
  --slate: #536277;
  --blue: #118ed8;
  --blue-dark: #0764ae;
  --cyan: #12bce9;
  --mist: #f2f6fa;
  --line: #dce5ed;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: Inter, "Arial Nova", Arial, Helvetica, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
::selection { background: rgba(18, 188, 233, .28); color: var(--ink); }

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 19, 33, .88);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 10, 26, .22);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 70px;
  left: 50%;
  max-width: 1180px;
  padding: 0 10px 0 18px;
  position: fixed;
  top: 14px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 40;
}
.brand { align-items: center; color: white; display: flex; font-family: "Arial Black", Arial, sans-serif; font-size: 18px; gap: 10px; justify-self: start; letter-spacing: .09em; }
.brand-mark { align-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 9px; display: flex; height: 44px; justify-content: center; overflow: hidden; padding: 4px; width: 44px; }
.brand-mark img { height: 100%; object-fit: contain; width: 100%; }
.desktop-nav { align-items: center; display: flex; gap: 34px; }
.desktop-nav a { color: #bec9d6; font-size: 13px; font-weight: 800; letter-spacing: .04em; padding: 26px 0; position: relative; text-transform: uppercase; transition: color .22s ease; }
.desktop-nav a::after { background: var(--cyan); bottom: 16px; content: ""; height: 2px; left: 0; position: absolute; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; width: 100%; }
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { align-items: center; background: white; border-radius: 8px; color: var(--ink); display: flex; font-size: 13px; font-weight: 900; gap: 8px; justify-self: end; letter-spacing: .02em; padding: 14px 18px; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.header-cta:hover { background: #eaf8ff; box-shadow: 0 10px 30px rgba(13, 161, 227, .22); transform: translateY(-2px); }
.header-cta svg { height: 16px; transition: transform .2s ease; width: 16px; }
.header-cta:hover svg { transform: translateX(3px); }
.menu-button, .mobile-nav { display: none; }

.hero {
  background: #071321;
  color: white;
  min-height: 890px;
  overflow: hidden;
  padding: 168px 34px 0;
  position: relative;
}
.hero-grid { background-image: linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px); background-size: 58px 58px; inset: 0; mask-image: linear-gradient(to bottom, black 10%, transparent 90%); opacity: .9; position: absolute; }
.hero::before { background: linear-gradient(90deg, transparent, rgba(17,142,216,.45), transparent); content: ""; height: 1px; left: 0; position: absolute; top: 114px; width: 100%; }
.hero-orb { border-radius: 50%; filter: blur(20px); pointer-events: none; position: absolute; }
.hero-orb-one { background: rgba(17,142,216,.18); height: 540px; right: -180px; top: 40px; width: 540px; }
.hero-orb-two { background: rgba(18,188,233,.08); height: 340px; left: -180px; top: 390px; width: 340px; }
.hero-inner { align-items: center; display: grid; gap: 70px; grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr); margin: 0 auto; max-width: 1180px; position: relative; z-index: 2; }
.hero-copy { max-width: 630px; }
.eyebrow, .section-kicker { align-items: center; color: #55cff0; display: flex; font-family: "Arial Black", Arial, sans-serif; font-size: 12px; gap: 8px; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow svg { height: 17px; width: 17px; }
.hero h1, .section-heading h2, .contact-copy h2 {
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  letter-spacing: -.055em;
  line-height: .98;
  margin: 24px 0 24px;
  text-transform: uppercase;
}
.hero-copy > p { color: #aebcca; font-size: 18px; line-height: 1.7; margin: 0; max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.primary-button, .secondary-button, .submit-button { align-items: center; border: 0; border-radius: 8px; cursor: pointer; display: inline-flex; font-size: 14px; font-weight: 900; gap: 10px; justify-content: center; letter-spacing: .02em; min-height: 54px; padding: 0 22px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.primary-button { background: linear-gradient(135deg, #1aa9e6, #0872bd); box-shadow: 0 12px 34px rgba(6,112,184,.28); color: white; }
.primary-button:hover { box-shadow: 0 16px 40px rgba(6,151,220,.35); transform: translateY(-3px); }
.primary-button svg, .submit-button svg { height: 18px; transition: transform .2s ease; width: 18px; }
.primary-button:hover svg, .submit-button:hover svg { transform: translateX(3px); }
.secondary-button { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); color: white; }
.secondary-button:hover { background: rgba(255,255,255,.11); transform: translateY(-3px); }
.trust-row { color: #8394a8; display: flex; flex-wrap: wrap; font-size: 12px; font-weight: 700; gap: 20px; margin-top: 27px; }
.trust-row span { align-items: center; display: flex; gap: 7px; }
.trust-row svg { color: #52c8ed; height: 16px; width: 16px; }
.hero-brand { min-height: 380px; position: relative; transform: perspective(1000px) rotateY(-2deg); }
.hero-brand > img { filter: drop-shadow(0 22px 30px rgba(0,0,0,.34)); left: 50%; max-width: 620px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 108%; z-index: 2; }
.hero-brand-glow { background: radial-gradient(circle, rgba(21,161,223,.34), transparent 68%); height: 500px; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 620px; }
.hero-brand::before, .hero-brand::after { border: 1px solid rgba(69,196,236,.16); content: ""; position: absolute; transform: rotate(-8deg); }
.hero-brand::before { height: 280px; inset: 50px 25px; }
.hero-brand::after { height: 240px; inset: 70px 50px; transform: rotate(8deg); }
.signal-card { align-items: center; backdrop-filter: blur(12px); background: rgba(8,24,41,.84); border: 1px solid rgba(94,201,239,.22); box-shadow: 0 14px 34px rgba(0,0,0,.24); display: flex; font-size: 11px; gap: 9px; letter-spacing: .07em; padding: 12px 14px; position: absolute; text-transform: uppercase; z-index: 3; }
.signal-card-one { left: 4%; top: 54px; }
.signal-card-one span { background: #58d6f0; border-radius: 3px; color: #072039; font-size: 9px; font-weight: 900; padding: 4px 5px; }
.signal-card-two { bottom: 38px; right: 3%; }
.signal-card-two svg { color: #48cdf0; height: 15px; width: 15px; }
.metrics { background: rgba(11,30,49,.93); border: 1px solid rgba(255,255,255,.09); display: grid; grid-template-columns: repeat(4, 1fr); margin: 100px auto 0; max-width: 1180px; position: relative; z-index: 3; }
.metrics > div { align-items: center; display: flex; gap: 14px; min-height: 118px; padding: 25px 30px; }
.metrics > div + div { border-left: 1px solid rgba(255,255,255,.09); }
.metrics strong { color: white; font-family: "Arial Black", Arial, sans-serif; font-size: 28px; letter-spacing: -.04em; }
.metrics span { color: #8999aa; font-size: 11px; font-weight: 800; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }

.section { margin: 0 auto; max-width: 1248px; padding: 120px 34px; }
.section-heading { max-width: 820px; }
.section-heading h2, .contact-copy h2 { color: var(--ink); font-size: clamp(38px, 5vw, 60px); margin: 20px 0; }
.section-heading > p { color: var(--slate); font-size: 17px; line-height: 1.75; margin: 0; max-width: 760px; }
.section-kicker { color: var(--blue-dark); }
.about-section { background: var(--mist); }
.platform-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); margin-top: 58px; }
.platform-card { background: white; border: 1px solid var(--line); min-height: 282px; overflow: hidden; padding: 28px; position: relative; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.platform-card::after { background: linear-gradient(90deg, var(--blue), var(--cyan)); bottom: 0; content: ""; height: 3px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .3s ease; width: 100%; }
.platform-card:hover { border-color: #b9d7e8; box-shadow: 0 24px 50px rgba(16,50,79,.1); transform: translateY(-7px); }
.platform-card:hover::after { transform: scaleX(1); }
.platform-icon { align-items: center; background: #eaf6fc; color: var(--blue-dark); display: flex; height: 56px; justify-content: center; margin-bottom: 50px; transition: background .25s ease, color .25s ease, transform .25s ease; width: 56px; }
.platform-card:hover .platform-icon { background: var(--blue); color: white; transform: rotate(-4deg) scale(1.05); }
.platform-icon svg { height: 26px; width: 26px; }
.platform-card h3 { font-family: "Arial Black", Arial, sans-serif; font-size: 17px; letter-spacing: -.02em; margin: 0 0 10px; text-transform: uppercase; }
.platform-card p { color: var(--slate); font-size: 13px; line-height: 1.65; margin: 0; }
.platform-number { color: #e8eef3; font-family: "Arial Black", Arial, sans-serif; font-size: 32px; position: absolute; right: 22px; top: 22px; }
.quality-panel { align-items: center; background: var(--navy); color: white; display: grid; gap: 25px; grid-template-columns: 70px 1.1fr 1fr auto; margin-top: 18px; padding: 34px; }
.quality-icon { align-items: center; background: linear-gradient(145deg, #168fdb, #0f4f8d); display: flex; height: 64px; justify-content: center; width: 64px; }
.quality-icon svg { height: 30px; width: 30px; }
.quality-panel h3 { font-family: "Arial Black", Arial, sans-serif; font-size: 21px; letter-spacing: -.03em; margin: 7px 0 0; text-transform: uppercase; }
.quality-panel p { color: #9cabbc; font-size: 13px; line-height: 1.65; margin: 0; }
.quality-panel a { align-items: center; border: 1px solid rgba(255,255,255,.18); display: flex; font-size: 12px; font-weight: 900; gap: 8px; padding: 14px 16px; transition: background .2s ease, border-color .2s ease; white-space: nowrap; }
.quality-panel a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.quality-panel a svg { height: 16px; width: 16px; }

.pricing-section { background: white; max-width: none; padding-left: max(34px, calc((100vw - 1180px) / 2)); padding-right: max(34px, calc((100vw - 1180px) / 2)); }
.pricing-heading { align-items: end; display: flex; justify-content: space-between; max-width: 1180px; }
.pricing-heading > div:first-child { max-width: 740px; }
.paypal-pill { align-items: center; background: #f3f7fb; border: 1px solid #dbe4ec; border-radius: 10px; display: flex; gap: 12px; padding: 13px 16px; }
.paypal-pill > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.paypal-pill small { color: #708092; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.paypal-pill strong { color: #142c55; font-size: 14px; }
.paypal-mark { height: 32px; position: relative; width: 31px; }
.paypal-mark i, .paypal-mark b { font-family: Arial Black, Arial, sans-serif; font-size: 28px; font-style: italic; line-height: 1; position: absolute; }
.paypal-mark i { color: #143d75; left: 0; top: 0; }
.paypal-mark b { color: #169bd7; left: 6px; top: 4px; }
.pricing-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); margin: 54px auto 0; max-width: 1180px; }
.price-card { border: 1px solid var(--line); min-height: 500px; padding: 30px 26px 24px; position: relative; transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease; }
.price-card:hover { border-color: #bdd7e8; box-shadow: 0 25px 60px rgba(6,34,58,.1); transform: translateY(-8px); }
.price-card.featured { background: var(--navy); border-color: var(--navy); color: white; }
.popular-label { background: linear-gradient(90deg, #169ddd, #3ac3e3); color: #06172b; font-size: 9px; font-weight: 900; letter-spacing: .12em; padding: 8px 10px; position: absolute; right: 0; text-transform: uppercase; top: 0; }
.price-count { color: #7c8a9a; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.price-count span { color: var(--blue); font-family: "Arial Black", Arial, sans-serif; font-size: 36px; letter-spacing: -.05em; margin-right: 7px; }
.featured .price-count { color: #90a0b0; }
.featured .price-count span { color: #48c2e8; }
.price-card h3 { font-family: "Arial Black", Arial, sans-serif; font-size: 17px; letter-spacing: -.02em; margin: 25px 0 14px; text-transform: uppercase; }
.price { font-family: "Arial Black", Arial, sans-serif; font-size: 42px; letter-spacing: -.05em; }
.price span { color: #7c8a99; font-family: Inter, Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .04em; margin-left: 4px; text-transform: uppercase; }
.price-card > p { color: var(--slate); font-size: 13px; line-height: 1.6; margin: 16px 0 24px; min-height: 42px; }
.featured > p { color: #9eacba; }
.price-card ul { border-top: 1px solid var(--line); list-style: none; margin: 0; padding: 22px 0 16px; }
.featured ul { border-color: rgba(255,255,255,.12); }
.price-card li { align-items: center; color: #536277; display: flex; font-size: 12px; gap: 9px; margin: 12px 0; }
.featured li { color: #b1bdc8; }
.price-card li svg { color: var(--blue); height: 14px; width: 14px; }
.featured li svg { color: #48c2e8; }
.price-card > a { align-items: center; background: #eef5f9; bottom: 24px; display: flex; font-size: 12px; font-weight: 900; gap: 7px; justify-content: center; left: 26px; min-height: 45px; position: absolute; right: 26px; transition: background .2s ease, color .2s ease; }
.price-card > a:hover { background: var(--blue); color: white; }
.featured > a { background: #168ed2; color: white; }
.featured > a:hover { background: #25addf; }
.price-card > a svg { height: 15px; transition: transform .2s ease; width: 15px; }
.price-card > a:hover svg { transform: translateX(3px); }
.custom-price { align-items: center; border: 1px solid var(--line); display: grid; gap: 28px; grid-template-columns: 1fr 1.3fr auto; margin: 12px auto 0; max-width: 1180px; padding: 23px 26px; }
.custom-price > div { align-items: center; display: flex; gap: 14px; }
.custom-price > div > svg { color: var(--blue); height: 30px; width: 30px; }
.custom-price span { display: flex; flex-direction: column; gap: 4px; }
.custom-price strong { font-family: "Arial Black", Arial, sans-serif; font-size: 14px; text-transform: uppercase; }
.custom-price small, .custom-price p { color: var(--slate); font-size: 12px; line-height: 1.55; margin: 0; }
.custom-price a { align-items: center; background: var(--navy); color: white; display: flex; font-size: 11px; font-weight: 900; gap: 8px; padding: 14px 17px; transition: background .2s ease; white-space: nowrap; }
.custom-price a:hover { background: var(--blue-dark); }
.custom-price a svg { height: 15px; width: 15px; }
.pricing-note { align-items: center; color: #718093; display: flex; font-size: 11px; gap: 8px; justify-content: center; margin: 22px 0 0; }
.pricing-note svg { color: var(--blue); height: 15px; width: 15px; }

.contact-section { background: #071321; color: white; max-width: none; padding-left: max(34px, calc((100vw - 1180px) / 2)); padding-right: max(34px, calc((100vw - 1180px) / 2)); position: relative; }
.contact-section::before { background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 50px 50px; content: ""; inset: 0; position: absolute; }
.contact-layout { align-items: start; display: grid; gap: 70px; grid-template-columns: .8fr 1.2fr; margin: 0 auto; max-width: 1180px; position: relative; }
.contact-copy { padding-top: 36px; position: sticky; top: 110px; }
.contact-copy h2 { color: white; margin-bottom: 22px; }
.contact-copy > p { color: #9cabb9; font-size: 16px; line-height: 1.75; margin: 0; }
.contact-steps { list-style: none; margin: 44px 0 32px; padding: 0; }
.contact-steps li { align-items: flex-start; display: flex; gap: 17px; padding: 0 0 28px; position: relative; }
.contact-steps li:not(:last-child)::after { background: rgba(255,255,255,.11); content: ""; height: 25px; left: 17px; position: absolute; top: 42px; width: 1px; }
.contact-steps li > span { align-items: center; border: 1px solid rgba(75,194,233,.36); color: #56c9ea; display: flex; flex: 0 0 35px; font-family: "Arial Black", Arial, sans-serif; font-size: 9px; height: 35px; justify-content: center; }
.contact-steps div { display: flex; flex-direction: column; gap: 6px; }
.contact-steps strong { font-size: 13px; }
.contact-steps small { color: #8293a4; font-size: 11px; line-height: 1.55; }
.response-note { align-items: center; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); display: flex; gap: 14px; padding: 16px; }
.response-note > svg { color: #50c7ea; height: 24px; width: 24px; }
.response-note span { display: flex; flex-direction: column; gap: 4px; }
.response-note strong { font-size: 12px; }
.response-note small { color: #8293a4; font-size: 10px; line-height: 1.5; }
.discord-community { align-items: center; background: rgba(88,101,242,.11); border: 1px solid rgba(125,136,255,.3); color: white; display: flex; gap: 14px; margin-top: 12px; padding: 16px; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.discord-community:hover { background: rgba(88,101,242,.2); border-color: rgba(145,154,255,.55); transform: translateY(-2px); }
.discord-community > svg:first-child { color: #8791ff; flex: 0 0 24px; height: 24px; width: 24px; }
.discord-community > svg:last-child { color: #aeb5ff; height: 17px; margin-left: auto; transition: transform .2s ease; width: 17px; }
.discord-community:hover > svg:last-child { transform: translateX(3px); }
.discord-community span { display: flex; flex-direction: column; gap: 4px; }
.discord-community strong { font-size: 12px; }
.discord-community small { color: #929fbd; font-size: 10px; line-height: 1.5; }
.form-shell { background: white; box-shadow: 0 34px 80px rgba(0,0,0,.28); color: var(--ink); }
.form-header { align-items: center; background: #edf5fa; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding: 22px 26px; }
.form-header div { display: flex; flex-direction: column; gap: 4px; }
.form-header span { color: var(--blue-dark); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.form-header strong { font-family: "Arial Black", Arial, sans-serif; font-size: 18px; text-transform: uppercase; }
.form-header > svg { color: var(--blue); height: 26px; width: 26px; }
.form-shell form { padding: 28px; }
.field-grid { display: grid; gap: 15px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; position: relative; }
.field > span { color: #34455a; font-size: 11px; font-weight: 850; letter-spacing: .025em; margin-bottom: 8px; }
.field b { color: var(--blue-dark); }
.field em { color: #8b98a8; float: right; font-size: 9px; font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select, .package-select { background: #f8fafc !important; border: 1px solid #ccd8e3 !important; border-radius: 6px !important; color: var(--ink) !important; outline: none !important; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease !important; width: 100% !important; }
.field input, .field select, .package-select { height: 48px !important; padding: 0 13px !important; }
.field textarea { line-height: 1.55; min-height: 118px; padding: 12px 13px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #98a4b1; }
.field input:focus, .field textarea:focus, .field select:focus, .package-select:focus { background: white !important; border-color: var(--blue) !important; box-shadow: 0 0 0 3px rgba(17,142,216,.12) !important; }
.field > small { bottom: 8px; color: #9aa6b3; font-size: 9px; position: absolute; right: 10px; }
.honeypot { left: -10000px; position: absolute; }
.submit-button { background: linear-gradient(135deg, #168fd5, #0767ae); color: white; min-height: 54px; width: 100%; }
.submit-button:hover { box-shadow: 0 14px 28px rgba(8,104,174,.22); transform: translateY(-2px); }
.form-privacy { align-items: center; color: #7a8998; display: flex; font-size: 9px; gap: 6px; justify-content: center; margin: 12px 0 0; text-align: center; }
.form-privacy svg { color: var(--blue); height: 13px; width: 13px; }
.success-message { align-items: center; background: #eaf8f1; border: 1px solid #bfe8d2; color: #175b3c; display: flex; font-size: 11px; gap: 10px; line-height: 1.5; margin-top: 16px; padding: 13px; }
.success-message svg { flex: 0 0 19px; height: 19px; width: 19px; }
.success-message strong { display: block; }

footer { align-items: center; background: #040b13; border-top: 1px solid rgba(255,255,255,.07); color: #8b99a7; display: grid; gap: 24px; grid-template-columns: 1fr auto 1fr; padding: 32px max(34px, calc((100vw - 1180px) / 2)); }
.footer-brand { align-items: center; display: flex; gap: 11px; }
.footer-brand img { height: 39px; object-fit: contain; width: 39px; }
.footer-brand span { display: flex; flex-direction: column; gap: 3px; }
.footer-brand strong { color: white; font-size: 11px; letter-spacing: .03em; }
.footer-brand small { font-size: 9px; }
footer nav { display: flex; gap: 25px; }
footer nav a { font-size: 10px; font-weight: 800; text-transform: uppercase; transition: color .2s ease; }
footer nav a:hover { color: white; }
footer > p { font-size: 9px; justify-self: end; line-height: 1.5; margin: 0; max-width: 270px; text-align: right; }

.policy-dialog { border: 0 !important; border-radius: 10px !important; box-shadow: 0 34px 90px rgba(0,15,32,.3) !important; gap: 18px !important; max-height: calc(100vh - 32px); max-width: 590px !important; overflow-y: auto; padding: 28px !important; }
.policy-dialog [data-slot="dialog-title"] { font-family: "Arial Black", Arial, sans-serif; font-size: 25px; letter-spacing: -.035em; text-transform: uppercase; }
.policy-dialog [data-slot="dialog-description"] { color: #66768a; line-height: 1.55; }
.policy-icon { align-items: center; background: #e8f5fc; color: var(--blue); display: flex; height: 44px; justify-content: center; margin-bottom: 4px; width: 44px; }
.policy-icon svg { height: 23px; width: 23px; }
.policy-summary { background: var(--navy); color: white; display: grid; gap: 4px; padding: 16px 18px; }
.policy-summary span { color: #70cdeb; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.policy-summary strong { font-size: 14px; }
.policy-summary small { color: #92a3b4; font-size: 10px; }
.policy-list { display: grid; gap: 9px; }
.policy-item { align-items: flex-start; border: 1px solid var(--line); cursor: pointer; display: flex; gap: 12px; padding: 14px; transition: background .2s ease, border-color .2s ease; }
.policy-item:hover { background: #f6fafc; border-color: #b9d8e9; }
.policy-item [data-slot="checkbox"] { height: 19px; margin-top: 1px; width: 19px; }
.policy-item > span { display: flex; flex-direction: column; gap: 4px; }
.policy-item strong { font-size: 12px; }
.policy-item small { color: #657589; font-size: 10px; line-height: 1.5; }
.bot-verification { background: #f4f8fb; border: 1px solid var(--line); padding: 15px; }
.bot-verification-heading { align-items: center; display: flex; gap: 10px; margin-bottom: 13px; }
.bot-verification-heading > svg { color: var(--blue); flex: 0 0 22px; height: 22px; width: 22px; }
.bot-verification-heading > span { display: flex; flex-direction: column; gap: 3px; }
.bot-verification-heading strong { font-size: 12px; }
.bot-verification-heading small { color: #66768a; font-size: 10px; }
.turnstile-widget { align-items: center; display: flex; min-height: 65px; overflow: hidden; width: 100%; }
.turnstile-widget > span { color: #7a8998; font-size: 10px; }
.bot-verification > p { color: #6f7d8e; font-size: 9px; margin: 8px 0 0; }
.bot-verification > p.verified { color: #167047; font-weight: 800; }
.bot-verification > p.error { color: #a12c3d; font-weight: 800; }
.policy-footnote { color: #7f8c9b; font-size: 9px; line-height: 1.55; margin: 0; }
.policy-dialog [data-slot="dialog-footer"] button { border-radius: 6px; font-weight: 800; min-height: 42px; }
.confirm-button { background: var(--blue) !important; color: white !important; }
.confirm-button:hover { background: var(--blue-dark) !important; }
.confirm-button svg { height: 15px; width: 15px; }

.static-policy-dialog { background: transparent; border: 0; height: 100%; inset: 0; margin: 0; max-height: none; max-width: none; padding: 16px; width: 100%; }
.static-policy-dialog[open] { align-items: center; display: flex; justify-content: center; }
.static-policy-dialog::backdrop { background: rgba(2, 10, 19, .66); backdrop-filter: blur(5px); }
.static-policy-panel { background: white; border-radius: 10px; box-shadow: 0 34px 90px rgba(0,15,32,.35); color: var(--ink); max-height: calc(100vh - 32px); max-width: 590px; overflow-y: auto; padding: 28px; width: 100%; }
.static-policy-panel h2 { font-family: "Arial Black", Arial, sans-serif; font-size: 25px; letter-spacing: -.035em; margin: 8px 0; text-transform: uppercase; }
.static-policy-panel > p { color: #66768a; font-size: 14px; line-height: 1.55; margin: 0 0 18px; }
.static-policy-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.static-policy-actions button { border: 1px solid var(--line); border-radius: 6px; cursor: pointer; font-size: 12px; font-weight: 850; min-height: 44px; padding: 0 17px; }
.static-policy-actions .cancel-policy { background: white; color: var(--ink); }
.static-policy-actions .confirm-policy { background: var(--blue); border-color: var(--blue); color: white; }
.static-policy-actions .confirm-policy:disabled { cursor: not-allowed; opacity: .45; }
.form-alert { display: none; font-size: 11px; line-height: 1.5; margin-top: 15px; padding: 13px; }
.form-alert.show { display: block; }
.form-alert.error { background: #fff0f1; border: 1px solid #f1c4cb; color: #8d2432; }
.form-alert.success { background: #eaf8f1; border: 1px solid #bfe8d2; color: #175b3c; }
.toast-note { background: var(--navy); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 16px 45px rgba(0,0,0,.25); color: white; font-size: 12px; opacity: 0; padding: 14px 17px; pointer-events: none; position: fixed; right: 18px; top: 92px; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease; z-index: 80; }
.toast-note.show { opacity: 1; transform: translateY(0); }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease var(--delay, 0ms), transform .7s cubic-bezier(.2,.8,.2,1) var(--delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-inner { gap: 35px; grid-template-columns: 1fr 1fr; }
  .hero-brand { min-height: 330px; }
  .platform-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card { min-height: 460px; }
  .quality-panel { grid-template-columns: 64px 1fr auto; }
  .quality-panel p { display: none; }
  .custom-price { grid-template-columns: 1fr 1fr; }
  .custom-price > a { justify-self: start; }
  .custom-price > p { grid-row: 2; }
  .contact-layout { gap: 42px; }
  footer { grid-template-columns: 1fr auto; }
  footer > p { grid-column: 1 / -1; justify-self: start; max-width: none; text-align: left; }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 74px; }
  .site-header { border-radius: 10px; grid-template-columns: 1fr auto; height: 62px; padding: 0 9px 0 13px; top: 8px; width: calc(100% - 16px); }
  .brand-mark { height: 39px; width: 39px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { align-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 7px; color: white; display: flex; height: 43px; justify-content: center; width: 43px; }
  .menu-button svg { height: 20px; width: 20px; }
  .mobile-nav { background: #0b1b2e; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 25px 50px rgba(0,0,0,.3); display: flex; flex-direction: column; gap: 2px; left: 0; padding: 9px; position: absolute; top: 68px; width: 100%; }
  .mobile-nav:not(.open) { display: none; }
  .mobile-nav a { color: #c3cfda; font-size: 12px; font-weight: 800; padding: 14px 13px; }
  .mobile-nav a:hover { background: rgba(255,255,255,.06); color: white; }
  .mobile-nav .mobile-nav-cta { background: var(--blue); color: white; margin-top: 4px; text-align: center; }
  .hero { min-height: 0; padding: 128px 20px 0; }
  .hero::before { top: 89px; }
  .hero-inner { gap: 50px; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(43px, 12vw, 64px); }
  .hero-copy > p { font-size: 16px; }
  .hero-brand { min-height: 300px; }
  .hero-brand > img { width: min(105%, 600px); }
  .signal-card-one { left: 1%; top: 40px; }
  .signal-card-two { bottom: 25px; right: 1%; }
  .metrics { grid-template-columns: repeat(2, 1fr); margin-top: 65px; }
  .metrics > div { min-height: 94px; padding: 20px; }
  .metrics > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  .metrics > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.09); }
  .metrics strong { font-size: 24px; }
  .section { padding: 88px 20px; }
  .section-heading h2, .contact-copy h2 { font-size: clamp(36px, 10vw, 52px); }
  .platform-grid { gap: 10px; grid-template-columns: 1fr 1fr; margin-top: 42px; }
  .platform-card { min-height: 250px; padding: 22px; }
  .platform-icon { margin-bottom: 36px; }
  .quality-panel { align-items: start; grid-template-columns: 58px 1fr; padding: 24px; }
  .quality-panel a { grid-column: 1 / -1; justify-content: center; }
  .pricing-section, .contact-section { padding-left: 20px; padding-right: 20px; }
  .pricing-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .pricing-grid { gap: 10px; }
  .custom-price { grid-template-columns: 1fr; }
  .custom-price > p { grid-row: auto; }
  .custom-price > a { justify-self: stretch; justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { padding-top: 0; position: static; }
  .contact-steps { margin-top: 34px; }
  footer { grid-template-columns: 1fr; padding: 30px 20px; }
  footer nav { justify-content: flex-start; }
  footer > p { grid-column: auto; }
}

@media (max-width: 540px) {
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero-actions { flex-direction: column; }
  .primary-button, .secondary-button { width: 100%; }
  .trust-row { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-brand { min-height: 235px; }
  .signal-card { font-size: 9px; padding: 9px 10px; }
  .signal-card-one { top: 25px; }
  .signal-card-two { bottom: 18px; }
  .metrics > div { align-items: flex-start; flex-direction: column; gap: 5px; padding: 17px; }
  .metrics strong { font-size: 22px; }
  .metrics span { font-size: 9px; }
  .section, .pricing-section, .contact-section { padding-left: 16px; padding-right: 16px; }
  .platform-grid, .pricing-grid { grid-template-columns: 1fr; }
  .platform-card { min-height: 220px; }
  .price-card { min-height: 455px; }
  .quality-panel { grid-template-columns: 1fr; }
  .quality-icon { height: 52px; width: 52px; }
  .field-grid { grid-template-columns: 1fr; }
  .form-shell form { padding: 22px 17px; }
  .form-header { padding: 20px 18px; }
  .discord-community { gap: 10px; padding: 14px; }
  .discord-community span { min-width: 0; }
  .discord-community small { overflow-wrap: anywhere; }
  .policy-dialog { padding: 22px 17px !important; }
  .policy-dialog [data-slot="dialog-footer"] { flex-direction: column-reverse; }
  .policy-dialog [data-slot="dialog-footer"] button { width: 100%; }
  .static-policy-dialog { height: 100vh; height: 100dvh; overflow: hidden; padding: 0; }
  .static-policy-dialog[open] { align-items: stretch; }
  .static-policy-panel { border-radius: 0; max-height: 100vh; max-height: 100dvh; min-height: 100vh; min-height: 100dvh; overscroll-behavior: contain; padding: 18px 15px calc(18px + env(safe-area-inset-bottom)); }
  .static-policy-panel h2 { font-size: 22px; }
  .static-policy-panel > p { font-size: 12px; margin-bottom: 14px; }
  .policy-summary { padding: 13px 14px; }
  .policy-list { gap: 7px; }
  .policy-item { gap: 10px; padding: 11px; }
  .policy-item input { flex: 0 0 18px; height: 18px; margin: 2px 0 0; width: 18px; }
  .policy-item > span { min-width: 0; }
  .policy-item small { overflow-wrap: anywhere; }
  .bot-verification { padding: 12px; }
  .static-policy-actions { background: white; bottom: 0; box-shadow: 0 -10px 24px rgba(7,19,33,.08); flex-direction: column-reverse; margin: 16px -2px 0; padding: 12px 2px 2px; position: sticky; z-index: 3; }
  .static-policy-actions button { width: 100%; }
  .toast-note { left: 16px; right: 16px; text-align: center; }
  footer nav { display: grid; gap: 8px; grid-template-columns: 1fr 1fr; width: 100%; }
  footer nav a { border: 1px solid rgba(255,255,255,.09); padding: 11px 8px; text-align: center; }
  footer > p { justify-self: stretch; max-width: none; text-align: left; }
}

@media (max-width: 360px) {
  .site-header { left: 8px; right: 8px; transform: none; width: auto; }
  .form-shell form { padding-left: 14px; padding-right: 14px; }
  .discord-community > svg:last-child { display: none; }
  .static-policy-panel { padding-left: 12px; padding-right: 12px; }
}

@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; }
}
