:root {
  color-scheme: dark;
  --bg: #030712;
  --bg-2: #06101f;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-2: rgba(255, 255, 255, 0.085);
  --line: rgba(148, 163, 184, 0.2);
  --line-strong: rgba(147, 197, 253, 0.34);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --quiet: #94a3b8;
  --blue: #2f80ff;
  --blue-2: #7dd3fc;
  --green: #22c55e;
  --amber: #f59e0b;
  --ink: #04111f;
  --shadow: 0 30px 100px rgba(2, 8, 23, 0.46);
  --radius: 26px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% -8%, rgba(47, 128, 255, 0.38), transparent 34rem),
    radial-gradient(circle at 86% 8%, rgba(14, 165, 233, 0.24), transparent 30rem),
    linear-gradient(180deg, #071122 0%, #030712 42rem);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 55%);
}

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

img {
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.86), rgba(3, 7, 18, 0));
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 16, 31, 0.78);
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.brand-title {
  display: block;
  font-weight: 800;
  line-height: 1;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--quiet);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  padding: 14px 22px;
  background: var(--blue-2);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(56, 189, 248, 0.22);
}

.button-primary:hover {
  background: #bae6fd;
}

.button-secondary {
  padding: 13px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button-light {
  padding: 12px 18px;
  background: #fff;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 72px;
  padding: 88px 0 92px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 22px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 6.8vw, 88px);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 830;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.lede {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.78;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.signal-row span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-media {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  transform: rotate(-2deg);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -42px;
  border-radius: 70px;
  background: rgba(47, 128, 255, 0.28);
  filter: blur(48px);
}

.phone-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.section {
  padding: 86px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 22px 70px rgba(2, 8, 23, 0.18);
}

.feature-card {
  min-height: 250px;
  padding: 24px;
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  background: rgba(96, 165, 250, 0.16);
  color: #bfdbfe;
  font-weight: 900;
}

.feature-card p,
.support-card p,
.policy-card p,
.faq-item p {
  color: var(--quiet);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.screen-card {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.28);
}

.screen-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: #020617;
}

.screen-card figcaption {
  padding: 14px 6px 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.workflow-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.workflow-copy,
.workflow-media {
  padding: clamp(30px, 5vw, 56px);
}

.workflow-media {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), #0f172a 45%, #020617);
}

.step-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.step {
  display: flex;
  gap: 15px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.75);
}

.step-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--blue-2);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.step span {
  display: block;
  margin-top: 4px;
  color: var(--quiet);
  font-size: 14px;
}

.workflow-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.workflow-shots img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 24px;
  background: #020617;
  box-shadow: 0 18px 50px rgba(2, 8, 23, 0.38);
}

.pricing-grid,
.support-grid,
.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: start;
  gap: 40px;
}

.price-card,
.support-card,
.policy-card,
.contact-card {
  padding: clamp(26px, 4vw, 38px);
}

.price-card {
  border-color: var(--line-strong);
  background: linear-gradient(135deg, rgba(47, 128, 255, 0.2), rgba(255, 255, 255, 0.045));
}

.price {
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 14px 0 14px;
}

.price strong {
  font-size: clamp(52px, 8vw, 72px);
  line-height: 1;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 14px;
}

.check {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.2);
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.faq-item {
  padding: 24px;
}

.page-hero {
  padding: 82px 0 56px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(44px, 6vw, 78px);
}

.page-hero .lede {
  max-width: 820px;
}

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

.support-card {
  min-height: 260px;
}

.support-card h3,
.policy-card h3 {
  margin-bottom: 12px;
}

.support-card a,
.policy-card a,
.text-link {
  color: #93c5fd;
  font-weight: 800;
}

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

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

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.62);
  color: #fff;
  outline: 0;
  padding: 13px 14px;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(125, 211, 252, 0.76);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.12);
}

.form-note,
.small-note {
  margin: 0;
  color: var(--quiet);
  font-size: 14px;
}

.form-status {
  min-height: 24px;
  color: #bfdbfe;
  font-weight: 700;
}

.policy-grid {
  grid-template-columns: minmax(0, 1fr);
}

.policy-card {
  max-width: 900px;
}

.policy-card ul {
  color: var(--quiet);
  line-height: 1.75;
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding: 38px 0 48px;
  color: var(--quiet);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero,
  .section-head,
  .workflow-panel,
  .pricing-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .feature-grid,
  .support-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-top: 12px;
  }

  .nav {
    border-radius: 24px;
  }

  .brand-subtitle,
  .button-light {
    display: none;
  }

  .hero,
  .page-hero {
    padding: 50px 0 54px;
  }

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

  .hero-actions .button,
  .page-actions .button,
  .signal-row span {
    width: 100%;
  }

  .signal-row span {
    text-align: center;
  }

  .hero-media {
    width: min(100%, 310px);
    transform: none;
  }

  .hero-media::before {
    inset: -18px;
  }

  .section {
    padding: 58px 0;
  }

  .feature-grid,
  .support-grid,
  .showcase-grid,
  .workflow-shots,
  .check-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .workflow-copy,
  .workflow-media,
  .price-card,
  .support-card,
  .policy-card,
  .contact-card {
    padding: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
