@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-alt: #eaf1fb;
  --line: #d6e0f2;
  --ink: #101828;
  --muted: #475467;
  --accent: #1663dd;
  --accent-strong: #0f4db4;
  --shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
  --radius-lg: 28px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(22, 99, 221, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 60%, #eef3fa 100%);
}

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

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(248, 251, 255, 0.84);
  border-bottom: 1px solid rgba(214, 224, 242, 0.85);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: min(100%, 440px);
}

.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
}

.brand-wordmark {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand.brand-fallback .brand-wordmark {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.1rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.96rem;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--ink);
}

.hero,
.subpage-hero {
  padding: 88px 0 40px;
}

.hero-shell {
  display: flex;
  justify-content: center;
}

.hero-grid,
.app-hero {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 32px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.shot-card,
.support-card,
.faq-panel,
.legal-card,
.app-card,
.callout {
  animation: fade-up 0.6s ease both;
}

.eyebrow {
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.subheadline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink);
  font-weight: 600;
  max-width: 42rem;
}

.hero-copy {
  max-width: 860px;
  text-align: center;
}

.body-copy,
.section-heading p,
.app-card p,
.copy-stack p,
.support-card p,
.faq-item p,
.legal-card p,
.shot-card,
.hero-stat,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.narrow-copy {
  max-width: 42rem;
}

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

.hero-copy .subheadline,
.hero-copy .body-copy {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy .hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.97rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(22, 99, 221, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line);
  color: var(--ink);
}

button[disabled] {
  cursor: default;
  opacity: 0.8;
}

.hero-panel,
.support-card,
.faq-panel,
.legal-card,
.app-card,
.callout {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(214, 224, 242, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 28px;
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(234, 241, 251, 0.92)),
    radial-gradient(circle at top right, rgba(22, 99, 221, 0.12), transparent 40%);
}

.hero-stat {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.hero-stat:last-child {
  border-bottom: 0;
}

.stat-label,
.app-kicker {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.section {
  padding: 28px 0 52px;
}

.section-tint {
  padding: 54px 0;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.about-block {
  display: flex;
  justify-content: center;
}

.about-heading {
  max-width: 760px;
  margin-bottom: 0;
  text-align: center;
}

.about-heading p {
  margin-left: auto;
  margin-right: auto;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.app-card {
  padding: 24px;
  min-height: 240px;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.callout {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.support-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.support-card,
.faq-panel,
.legal-card {
  padding: 28px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(22, 99, 221, 0.16);
  border-color: var(--accent);
}

.faq-panel {
  display: grid;
  gap: 18px;
}

.faq-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.faq-item:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.legal-stack {
  display: grid;
  gap: 18px;
}

.policy-note {
  font-size: 0.92rem;
}

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

.shot-card {
  min-height: 240px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 224, 242, 0.95);
  background:
    linear-gradient(180deg, rgba(22, 99, 221, 0.08), rgba(22, 99, 221, 0.02)),
    linear-gradient(145deg, #ffffff, #eef4ff);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.site-footer {
  padding: 18px 0 40px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 224, 242, 0.95);
}

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

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .app-hero,
  .split-layout,
  .support-layout,
  .app-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .nav {
    padding: 16px 0;
    min-height: auto;
    flex-direction: column;
    align-items: start;
  }

  .hero,
  .subpage-hero {
    padding-top: 56px;
  }

  .app-hero,
  .split-layout,
  .support-layout,
  .shot-grid,
  .app-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 42px;
  }

  h1 {
    max-width: none;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
