@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/Outfit-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --background: #f8f9fa;
  --card: #ffffff;
  --surface: #f0f3f1;
  --primary: #3a6b4f;
  --primary-dark: #24513a;
  --primary-pale: #dcebe2;
  --secondary: #1d3557;
  --secondary-pale: #e1e9f5;
  --accent: #ffb703;
  --text: #191c1d;
  --text-secondary: #404943;
  --muted: #6d7771;
  --border: #cbd4ce;
  --shadow: 0 24px 70px rgba(29, 53, 87, 0.12);
  --radius-large: 32px;
  --radius-medium: 20px;
  --page-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(191, 201, 193, 0.7);
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(16px);
}

.nav-bar,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-bar {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(29, 53, 87, 0.18);
}

.release-pill {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
  min-height: calc(100svh - 76px);
  padding-block: 80px;
}

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

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

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.hero-description {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button:focus-visible {
  outline: 3px solid rgba(255, 183, 3, 0.7);
  outline-offset: 3px;
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 32px rgba(58, 107, 79, 0.25);
}

.button-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 18px 38px rgba(58, 107, 79, 0.3);
}

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

.download-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.app-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(187, 211, 253, 0.55);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 75% 20%, rgba(72, 230, 143, 0.2), transparent 36%),
    linear-gradient(145deg, #10223d, #07121f 75%);
  box-shadow: var(--shadow);
}

.app-showcase::before,
.app-showcase::after {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(94, 213, 153, 0.18);
  border-radius: 50%;
  content: "";
}

.app-showcase::after {
  width: 490px;
  height: 490px;
  border-color: rgba(75, 144, 245, 0.13);
}

.showcase-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(29, 117, 255, 0.26);
  filter: blur(80px);
}

.logo-stage {
  position: relative;
  width: min(74%, 350px);
}

.logo-stage img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 45px rgba(0, 0, 0, 0.45));
}

.showcase-status {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 18, 31, 0.78);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #57dc91;
  box-shadow: 0 0 0 4px rgba(87, 220, 145, 0.13);
}

.feature-band {
  padding-block: 100px;
  background: var(--secondary);
  color: white;
}

.feature-band .eyebrow {
  color: #8be5b5;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

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

.feature-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.07);
}

.feature-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 13px;
  background: #c6f1d9;
  color: var(--primary-dark);
}

.feature-icon-blue {
  background: #d7e6ff;
  color: var(--secondary);
}

.feature-icon-gold {
  background: #ffe7a3;
  color: #6d4d00;
}

.feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.install-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(50px, 8vw, 110px);
  padding-block: 110px;
}

.install-copy p:last-child {
  color: var(--text-secondary);
}

.steps-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
}

.steps-list li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  font-weight: 800;
}

.steps-list h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.steps-list p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.final-cta {
  padding-block: 70px;
  background: var(--primary);
  color: white;
}

.final-cta .eyebrow {
  color: #bff0d4;
}

.final-cta h2 {
  margin-bottom: 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.button-light {
  flex: 0 0 auto;
  background: white;
  color: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(22, 50, 36, 0.2);
}

.site-footer {
  padding-block: 26px;
  border-top: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 64px 80px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

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

  .app-showcase {
    min-height: 460px;
  }

  .feature-grid,
  .install-section {
    grid-template-columns: 1fr;
  }

  .install-section {
    gap: 34px;
  }

}

@media (max-width: 620px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--page-width));
  }

  .release-pill {
    font-size: 0.68rem;
  }

  .hero {
    padding-block: 50px 68px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .app-showcase {
    min-height: 390px;
  }

  .showcase-status {
    right: 16px;
    bottom: 16px;
  }

  .feature-band,
  .install-section {
    padding-block: 76px;
  }

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

  .feature-card,
  .steps-list li {
    padding: 20px;
  }

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

  .final-cta .button {
    width: 100%;
  }

  .footer-inner {
    gap: 4px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
