:root {
  --bg: #fbfdff;
  --surface: #ffffff;
  --surface-soft: #f3f7fb;
  --surface-warm: #f8fbff;
  --ink: #111c34;
  --text: #25324a;
  --muted: #66758a;
  --line: #e3ebf4;
  --primary: #2367e8;
  --primary-dark: #174fb8;
  --cyan: #28b8dd;
  --mint: #0fa778;
  --amber: #e9a23a;
  --danger: #c54d4d;
  --gradient-brand: linear-gradient(135deg, #2367e8 0%, #28b8dd 100%);
  --gradient-mesh:
    radial-gradient(at 18% 8%, rgba(61, 132, 244, 0.26), transparent 48%),
    radial-gradient(at 82% 0%, rgba(40, 184, 221, 0.22), transparent 52%),
    radial-gradient(at 48% 100%, rgba(75, 116, 240, 0.16), transparent 58%);
  --shadow-sm: 0 1px 2px rgba(17, 28, 52, 0.04), 0 8px 24px rgba(17, 28, 52, 0.06);
  --shadow-md: 0 10px 40px -12px rgba(17, 28, 52, 0.14);
  --shadow-brand: 0 20px 60px -20px rgba(35, 103, 232, 0.46);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --header-height: 64px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: Sora, Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.12;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 76px 0;
}

.section-band {
  border-block: 1px solid var(--line);
  background: rgba(243, 247, 251, 0.64);
}

.top-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
}

.top-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(220, 231, 240, 0.85);
  background: rgba(251, 253, 255, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 148px;
}

.brand img {
  width: auto;
  height: 40px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  border-radius: 10px;
  padding: 9px 14px;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: transparent;
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  transition: background 160ms ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, top 160ms ease;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.mobile-panel.open {
  display: block;
}

.mobile-nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 22px;
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  border-radius: 8px;
  padding: 12px 10px;
}

.mobile-nav a.active {
  background: #e9f3fb;
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.button-secondary {
  background: var(--surface);
  border-color: var(--line);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.button-white {
  background: #fff;
  color: var(--primary-dark);
}

.icon-arrow {
  width: 16px;
  height: 16px;
}

.hero {
  position: relative;
  padding: 88px 0 72px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-items: start;
}

.hero-grid > .reveal:first-child {
  max-width: 780px;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 7px 11px;
  text-transform: none;
  color: var(--muted);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(15, 157, 117, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin-top: 20px;
  font-size: 54px;
  line-height: 1.05;
}

.page-hero h1 {
  max-width: 820px;
  margin-top: 12px;
  font-size: 48px;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy,
.page-copy {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.checkline,
.bullet-list li,
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check {
  flex: 0 0 auto;
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e7f7f1;
  color: var(--mint);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.product-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.product-frame::before {
  display: none;
}

.window-dots {
  display: none;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--line);
}

.window-dots span:nth-child(1) {
  background: #ff6b6b;
}

.window-dots span:nth-child(2) {
  background: #f2bf4b;
}

.window-dots span:nth-child(3) {
  background: #2fc57b;
}

.product-frame img {
  width: 100%;
}

.hero .product-frame {
  margin: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 0;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--primary);
  font-family: Sora, Inter, sans-serif;
  font-size: 30px;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
}

.split.reverse .split-copy {
  order: 2;
}

.split h2,
.section-heading h2 {
  margin-top: 10px;
  font-size: 40px;
}

.split p,
.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.bullet-list li {
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  min-height: 220px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  border-color: rgba(20, 105, 216, 0.32);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon,
.contact-icon,
.success-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eaf3ff;
  color: var(--primary);
}

.feature-icon svg,
.contact-icon svg,
.success-icon svg {
  width: 22px;
  height: 22px;
}

.tone-mint {
  background: #e7f7f1;
  color: var(--mint);
}

.tone-amber {
  background: #fff3dd;
  color: #b86b00;
}

.tone-cyan {
  background: #e5f8fb;
  color: var(--cyan);
}

.feature-card h3,
.contact-card h3 {
  margin-top: 18px;
  font-size: 18px;
}

.feature-card p,
.contact-card p,
.testimonial p,
.price-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.testimonial {
  padding: 26px;
}

.testimonial p {
  color: var(--text);
  font-size: 15px;
}

.testimonial footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  color: var(--ink);
  font-size: 14px;
}

.testimonial span {
  color: var(--muted);
  font-size: 13px;
}

.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--gradient-brand);
  color: rgba(255, 255, 255, 0.92);
  padding: 56px;
  box-shadow: var(--shadow-brand);
}

.cta::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -86px;
  right: -72px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(34px);
  pointer-events: none;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  max-width: 760px;
  color: #fff;
  font-size: 40px;
}

.cta p {
  max-width: 670px;
  margin-top: 14px;
  font-size: 17px;
}

.page-hero {
  position: relative;
  padding: 92px 0 58px;
}

.feature-group {
  padding: 44px 0;
}

.feature-group h2 {
  margin-bottom: 22px;
  font-size: 30px;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  padding: 32px;
}

.price-card.highlight {
  border-color: rgba(20, 105, 216, 0.56);
  box-shadow: var(--shadow-brand);
}

.popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 850;
}

.price-card h2 {
  font-size: 22px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 26px;
}

.price strong {
  color: var(--ink);
  font-family: Sora, Inter, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 14px;
}

.price-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  flex: 1;
}

.price-list li {
  font-size: 14px;
}

.price-card .button {
  width: 100%;
  margin-top: 28px;
}

.note {
  margin-top: 28px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(400px, 1.16fr);
  gap: 50px;
  align-items: start;
}

.form-panel {
  padding: 30px;
}

.form-panel h2 {
  font-size: 28px;
}

.form-panel > p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field label {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--text);
  padding: 12px 13px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(20, 105, 216, 0.12);
}

.form-footnote {
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.form-alert {
  margin-top: 18px;
  border: 1px solid rgba(197, 77, 77, 0.34);
  border-radius: 8px;
  background: #fff2f2;
  color: var(--danger);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 650;
}

.form-alert ul {
  display: grid;
  gap: 4px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success-message {
  display: grid;
  min-height: 320px;
  place-items: center;
  text-align: center;
}

.success-message h3 {
  margin-top: 18px;
  font-size: 26px;
}

.success-message p {
  max-width: 430px;
  margin: 10px auto 0;
  color: var(--muted);
}

.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.mini-list li {
  display: flex;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 22px;
}

.contact-card p {
  color: var(--ink);
  font-weight: 800;
}

.country-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.country-strip a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--primary-dark);
  padding: 12px 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.country-strip a:hover {
  border-color: rgba(20, 105, 216, 0.34);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.seo-content {
  max-width: 850px;
}

.seo-content h2 {
  font-size: 34px;
}

.seo-content p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  margin-top: 84px;
  border-top: 1px solid var(--line);
  background: #eef7fb;
}

.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.8fr 0.7fr;
  gap: 34px;
}

.footer-brand img {
  width: auto;
  height: 40px;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.footer-col h3 {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col ul {
  display: grid;
  gap: 9px;
}

.footer-col a {
  color: var(--muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-bottom-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .split,
  .form-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner,
  .mobile-nav,
  .footer-grid,
  .footer-bottom-inner {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 58px 0;
  }

  .section.compact,
  .feature-group {
    padding: 42px 0;
  }

  .hero {
    padding: 40px 0 28px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .page-hero {
    padding: 48px 0 34px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .hero-copy,
  .page-copy {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .product-frame::before {
    height: 28px;
  }

  .window-dots {
    top: 10px;
  }

  .split h2,
  .section-heading h2,
  .cta h2 {
    font-size: 30px;
  }

  .grid-3,
  .grid-2,
  .field-row,
  .country-strip {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .price-card {
    min-height: auto;
  }

  .form-panel,
  .cta {
    padding: 22px;
  }

  .stats {
    gap: 12px;
  }

  .stat strong {
    font-size: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
  }
}
