:root {
  --dark-navy: #03101f;
  --deep-navy: #061a35;
  --panel-navy: #09264c;
  --buddy-blue: #1269ff;
  --neon-cyan: #00e5ff;
  --light-cyan: #7df7ff;
  --white: #ffffff;
  --soft-grey: #f4f7fb;
  --soft-blue: #eaf4ff;
  --text-grey: #64748b;
  --dark-text: #081225;
  --border: rgba(0, 229, 255, 0.16);
  --shadow: 0 24px 60px rgba(8, 18, 37, 0.14);
  --glow: 0 0 38px rgba(0, 229, 255, 0.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 16, 35, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 800; letter-spacing: -0.02em; }
.brand img { width: 46px; height: 46px; border-radius: 14px; object-fit: cover; box-shadow: var(--glow); }
.brand span { font-size: 1.1rem; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a { color: rgba(255,255,255,0.78); padding: 10px 13px; border-radius: 999px; font-weight: 700; font-size: 0.94rem; transition: 0.2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--neon-cyan); background: rgba(18,105,255,0.12); }
.main-nav .nav-cta { color: var(--white); background: linear-gradient(135deg, var(--buddy-blue), var(--neon-cyan)); box-shadow: 0 10px 24px rgba(18,105,255,0.32); margin-left: 6px; }
.main-nav .nav-cta:hover { color: var(--white); transform: translateY(-1px); }
.menu-toggle { display: none; border: 1px solid var(--border); background: rgba(255,255,255,0.06); color: var(--white); border-radius: 12px; width: 44px; height: 44px; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.hero { position: relative; overflow: hidden; color: var(--white); background: radial-gradient(circle at 82% 18%, rgba(0,229,255,0.26), transparent 28%), linear-gradient(135deg, var(--dark-navy), var(--deep-navy)); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px); background-size: 38px 38px; opacity: 0.3; }
.hero > * { position: relative; }
.hero-home { padding: 96px 0 88px; }
.small-hero { padding: 82px 0 78px; }
.legal-hero { padding: 76px 0; }
.hero-grid, .split-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 54px; align-items: center; }
.hero h1 { font-size: clamp(2.55rem, 5.2vw, 5.7rem); line-height: 0.98; letter-spacing: -0.06em; margin: 16px 0 22px; }
.small-hero h1, .legal-hero h1 { font-size: clamp(2.35rem, 4vw, 4.5rem); }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.14rem; max-width: 760px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--light-cyan); background: rgba(0,229,255,0.12); border: 1px solid var(--border); padding: 8px 13px; border-radius: 999px; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.12em; }
.eyebrow.dark { color: var(--buddy-blue); background: rgba(18,105,255,0.08); border-color: rgba(18,105,255,0.18); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 22px; border-radius: 999px; font-weight: 900; border: 1px solid transparent; transition: 0.2s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--buddy-blue), var(--neon-cyan)); box-shadow: 0 15px 34px rgba(18,105,255,0.28); }
.btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.07); }
.dark-btn { color: var(--dark-text); border-color: rgba(18,105,255,0.18); background: var(--white); }
.microcopy { font-size: 0.95rem !important; color: rgba(255,255,255,0.68) !important; margin-top: 18px; }
.browser-frame { background: rgba(255,255,255,0.96); border: 1px solid rgba(255,255,255,0.5); border-radius: 24px; padding: 12px; box-shadow: 0 34px 85px rgba(0,0,0,0.33), var(--glow); }
.browser-frame img { border-radius: 16px; }
.browser-dots { display: flex; gap: 7px; padding: 4px 0 12px 4px; }
.browser-dots span { width: 10px; height: 10px; background: #d7dee8; border-radius: 50%; }
.floating { animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.section { padding: 82px 0; }
.light { background: var(--white); }
.soft { background: var(--soft-grey); }
.dark { color: var(--white); background: radial-gradient(circle at 18% 0%, rgba(0,229,255,0.13), transparent 30%), linear-gradient(135deg, var(--dark-navy), var(--deep-navy)); }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 44px; }
.section h2 { font-size: clamp(2rem, 3.4vw, 3.35rem); line-height: 1.05; letter-spacing: -0.045em; margin: 14px 0 16px; }
.section h3 { line-height: 1.2; }
.section p { color: var(--text-grey); margin-top: 0; }
.dark p { color: rgba(255,255,255,0.78); }
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.info-card, .feature-card, .mini-card, .price-card, .placeholder-card, .direct-card, .form-card, .contact-side, .brand-panel { background: var(--white); border: 1px solid rgba(8,18,37,0.08); border-radius: 24px; padding: 26px; box-shadow: var(--shadow); }
.info-card .icon, .feature-card .icon, .notice-card .icon { display: inline-flex; width: 42px; height: 42px; border-radius: 14px; align-items: center; justify-content: center; color: var(--white); background: linear-gradient(135deg, var(--buddy-blue), var(--neon-cyan)); font-weight: 900; margin-bottom: 12px; }
.feature-card, .info-card { transition: 0.2s ease; }
.feature-card:hover, .info-card:hover, .price-card:hover { transform: translateY(-5px); box-shadow: 0 30px 70px rgba(8,18,37,0.16); }
.feature-card h3, .info-card h3, .mini-card h3 { margin: 0 0 8px; }
.mini-card { padding: 20px; display: flex; align-items: center; gap: 12px; box-shadow: 0 12px 28px rgba(8,18,37,0.08); }
.mini-card .icon { color: var(--neon-cyan); background: var(--deep-navy); width: 30px; height: 30px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--neon-cyan); font-weight: 900; }
.mascot-card { background: radial-gradient(circle, rgba(0,229,255,0.16), rgba(18,105,255,0.06)); border: 1px solid var(--border); border-radius: 32px; padding: 24px; box-shadow: var(--glow); }
.mascot-card img { border-radius: 24px; }
.showcase-image { border-radius: 28px; padding: 12px; background: rgba(255,255,255,0.08); border: 1px solid var(--border); box-shadow: var(--glow); }
.showcase-image img { border-radius: 20px; width: 100%; }
.light-frame { background: var(--white); border-color: rgba(8,18,37,0.08); box-shadow: var(--shadow); }
.pill-row, .audience-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.pill-row span, .audience-grid span { border: 1px solid var(--border); background: rgba(0,229,255,0.09); color: var(--white); padding: 10px 15px; border-radius: 999px; font-weight: 800; }
.dark-pills span, .audience-grid span { color: var(--dark-text); background: var(--white); border-color: rgba(18,105,255,0.14); box-shadow: 0 10px 26px rgba(8,18,37,0.08); }
.center { text-align: center; margin-top: 34px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { position: relative; }
.price-card.highlighted { border: 2px solid var(--neon-cyan); box-shadow: var(--glow), var(--shadow); transform: translateY(-10px); }
.price-card h3 { font-size: 1.7rem; margin-bottom: 8px; }
.price-card strong { display: block; color: var(--buddy-blue); margin: 18px 0; font-size: 1.08rem; }
.price-card ul { padding-left: 20px; color: var(--text-grey); }
.badge { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(18,105,255,0.1); color: var(--buddy-blue); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.08em; }
.best-for { font-size: 0.94rem; }
.cta-section { color: var(--white); background: linear-gradient(135deg, var(--dark-navy), var(--deep-navy)); }
.cta-card { display: grid; grid-template-columns: 1fr 220px; align-items: center; gap: 30px; border: 1px solid var(--border); border-radius: 34px; padding: 42px; background: radial-gradient(circle at 80% 20%, rgba(0,229,255,0.16), rgba(255,255,255,0.04)); box-shadow: var(--glow); }
.cta-card img { border-radius: 26px; }
.notice-card { display: flex; align-items: flex-start; gap: 20px; border-radius: 26px; background: var(--white); box-shadow: var(--shadow); padding: 30px; border: 1px solid rgba(8,18,37,0.08); }
.dark-notice { background: rgba(255,255,255,0.06); border-color: var(--border); color: var(--white); }
.table-wrap { overflow-x: auto; border-radius: 22px; box-shadow: var(--shadow); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 16px 18px; text-align: center; border-bottom: 1px solid rgba(8,18,37,0.07); }
th:first-child, td:first-child { text-align: left; font-weight: 800; }
th { background: var(--deep-navy); color: var(--white); }
td:not(:first-child) { color: var(--buddy-blue); font-weight: 900; }
.faq-list { display: grid; gap: 14px; max-width: 850px; margin: 0 auto; }
details { background: var(--white); border: 1px solid rgba(8,18,37,0.08); border-radius: 18px; padding: 18px 20px; box-shadow: 0 10px 30px rgba(8,18,37,0.07); }
summary { cursor: pointer; font-weight: 900; color: var(--dark-text); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card, .glow-card { border: 1px solid var(--border); border-radius: 22px; padding: 24px; background: rgba(255,255,255,0.06); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.step-card span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; color: var(--dark-navy); background: var(--neon-cyan); font-weight: 900; }
.light-steps .step-card { background: var(--white); color: var(--dark-text); border-color: rgba(8,18,37,0.08); box-shadow: var(--shadow); }
.placeholder-card { border-style: dashed; text-align: center; min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.placeholder-card span { color: var(--buddy-blue); font-weight: 900; font-size: 0.78rem; letter-spacing: 0.08em; }
.card-stack { display: grid; gap: 14px; }
.card-stack span { background: var(--white); border-radius: 16px; padding: 16px 18px; box-shadow: 0 12px 28px rgba(8,18,37,0.08); font-weight: 800; }
.mission { font-size: 1.45rem !important; color: var(--white) !important; font-weight: 900; }
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 26px; align-items: start; }
.form-card form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-row { display: grid; gap: 7px; }
.form-row.full { grid-column: 1 / -1; }
label { font-weight: 900; color: var(--dark-text); }
input, select, textarea { width: 100%; border: 1px solid rgba(8,18,37,0.14); border-radius: 14px; padding: 13px 14px; font: inherit; background: var(--white); color: var(--dark-text); }
input:focus, select:focus, textarea:focus, button:focus, a:focus { outline: 3px solid rgba(0,229,255,0.32); outline-offset: 2px; }
.form-message { padding: 14px 16px; border-radius: 14px; margin: 16px 0; font-weight: 800; }
.form-message.success { background: #e9fff5; color: #047857; border: 1px solid #a7f3d0; }
.form-message.error { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }
.contact-side { display: grid; gap: 18px; }
.direct-card { box-shadow: none; border-radius: 20px; background: var(--soft-grey); }
.legal-content { max-width: 900px; background: var(--white); border: 1px solid rgba(8,18,37,0.08); border-radius: 28px; box-shadow: var(--shadow); padding: 40px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 28px; }
.legal-content a { color: var(--buddy-blue); font-weight: 900; }
.site-footer { background: #020b17; color: var(--white); padding: 64px 0 26px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr; gap: 34px; }
.footer-grid h3, .footer-grid h4 { margin: 0 0 14px; }
.footer-grid p { color: rgba(255,255,255,0.68); }
.footer-grid a { display: block; color: rgba(255,255,255,0.72); margin: 8px 0; }
.footer-grid a:hover, .footer-bottom a:hover { color: var(--neon-cyan); }
.footer-brand img { width: 78px; height: 78px; object-fit: cover; border-radius: 18px; box-shadow: var(--glow); margin-bottom: 14px; }
.footer-button { display: inline-flex !important; padding: 10px 16px; border-radius: 999px; background: linear-gradient(135deg, var(--buddy-blue), var(--neon-cyan)); color: var(--white) !important; font-weight: 900; margin: 8px 0 12px !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 36px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,0.68); font-size: 0.92rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.72); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.mock-card { min-height: 280px; border-radius: 28px; padding: 24px; border: 1px solid rgba(18,105,255,0.15); background: var(--white); box-shadow: var(--shadow); }
.dark .mock-card { background: rgba(255,255,255,0.06); border-color: var(--border); }
.mock-top { height: 64px; border-radius: 18px; background: linear-gradient(135deg, var(--buddy-blue), var(--neon-cyan)); margin-bottom: 22px; }
.mock-lines { display: grid; gap: 14px; }
.mock-lines span { height: 22px; border-radius: 999px; background: rgba(18,105,255,0.12); }
.dark .mock-lines span { background: rgba(255,255,255,0.14); }
.mock-lines span:nth-child(2) { width: 86%; }
.mock-lines span:nth-child(3) { width: 62%; }
.mock-lines span:nth-child(4) { width: 74%; }
@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav { position: absolute; top: 76px; left: 18px; right: 18px; display: none; flex-direction: column; align-items: stretch; padding: 18px; background: rgba(5,16,35,0.98); border: 1px solid var(--border); border-radius: 0 0 22px 22px; box-shadow: var(--glow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; }
  .main-nav .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid, .split-grid, .contact-grid, .cta-card { grid-template-columns: 1fr; }
  .hero-home, .small-hero { padding: 64px 0; }
  .card-grid.three, .card-grid.four, .pricing-grid, .step-grid, .footer-grid { grid-template-columns: 1fr; }
  .price-card.highlighted { transform: none; }
  .cta-card img { max-width: 220px; }
  .footer-bottom { display: grid; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 26px, 1180px); }
  .nav-wrap { height: 68px; }
  .brand img { width: 38px; height: 38px; }
  .brand span { font-size: 1rem; }
  .main-nav { top: 68px; }
  .hero h1 { font-size: 2.65rem; }
  .section { padding: 58px 0; }
  .button-row, .btn { width: 100%; }
  .form-card form { grid-template-columns: 1fr; }
  .cta-card, .legal-content, .form-card, .contact-side { padding: 24px; }
  .pill-row, .audience-grid { justify-content: flex-start; }
}
