:root {
  --bg: #f3efe4;
  --bg-soft: #faf8f2;
  --ink: #14233c;
  --ink-muted: #4e5f79;
  --line: #d4dcec;
  --panel: #ffffff;
  --accent: #0d8ab2;
  --accent-strong: #066a89;
  --warm: #df7a35;
  --shadow: 0 20px 60px -30px rgba(12, 26, 45, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(13, 138, 178, 0.18), transparent 30%),
    radial-gradient(circle at 90% 4%, rgba(223, 122, 53, 0.16), transparent 30%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(20, 35, 60, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 35, 60, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 10;
  margin-top: 0.8rem;
  padding: 0.7rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.72rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--warm));
  letter-spacing: 0.06em;
}

.brand-text {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
}

.top-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.top-nav a:hover {
  color: var(--ink);
}

main {
  padding: 2.7rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section,
.site-footer {
  animation: rise-in 700ms ease both;
}

.hero-copy {
  animation-delay: 70ms;
}

.hero-panel {
  animation-delay: 190ms;
}

.hero-copy,
.hero-panel,
.feature-card,
.step-grid li,
.shot-card,
.security-grid p,
.cta {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.8));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.hero-panel {
  padding: clamp(1.2rem, 2.6vw, 1.8rem);
  display: grid;
  gap: 0.78rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.25;
}

h1 {
  max-width: 19ch;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
}

.hero-text {
  max-width: 56ch;
  margin: 1rem 0 0;
  color: var(--ink-muted);
}

.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  padding: 0.72rem 1.08rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 26px -14px rgba(6, 106, 137, 0.66);
}

.btn-primary:hover {
  box-shadow: 0 18px 28px -14px rgba(6, 106, 137, 0.72);
}

.btn-secondary {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border-color: var(--line);
}

.btn-ghost {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
  padding: 0.5rem 0.82rem;
}

.hero-points {
  margin: 1.2rem 0 0;
  padding-left: 1.05rem;
  color: var(--ink-muted);
}

.hero-points li + li {
  margin-top: 0.32rem;
}

.hero-panel h2 {
  font-size: 1.08rem;
}

.metric {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  background: rgba(255, 255, 255, 0.72);
}

.metric-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.metric-value {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.section {
  margin-top: 1.15rem;
  padding: clamp(1.2rem, 3vw, 1.85rem);
  animation-delay: 120ms;
}

.section-head h2 {
  max-width: 24ch;
}

.feature-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
}

.feature-card {
  padding: 1rem;
  animation: rise-in 680ms ease both;
  animation-delay: calc(140ms + var(--order) * 65ms);
}

.feature-card h3 {
  font-size: 1rem;
}

.feature-card p {
  margin: 0.45rem 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.step-grid {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.82rem;
}

.step-grid li {
  padding: 0.95rem;
}

.step-num {
  display: inline-grid;
  place-items: center;
  min-width: 2.2rem;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--warm));
}

.step-grid h3 {
  margin-top: 0.7rem;
  font-size: 1rem;
}

.step-grid p {
  margin: 0.44rem 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.shot-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.shot-card {
  padding: 0.75rem;
  animation: bob 4.4s ease-in-out infinite;
}

.shot-card:nth-child(2) {
  animation-delay: 300ms;
}

.shot-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
}

.shot-card figcaption {
  margin-top: 0.62rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.security-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

.security-grid p {
  margin: 0;
  padding: 0.95rem;
  color: var(--ink-muted);
}

.security-grid strong {
  color: var(--ink);
}

.cta {
  text-align: center;
}

.cta p {
  max-width: 62ch;
  margin: 0.72rem auto 0;
  color: var(--ink-muted);
}

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

.site-footer {
  margin-bottom: 1.8rem;
  margin-top: 1.15rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.8));
}

.site-footer p {
  margin: 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 990px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    border-radius: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 0.8rem;
  }

  .feature-grid,
  .step-grid,
  .shot-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  main {
    padding-top: 1.75rem;
  }
}

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