:root {
  color-scheme: light;
  --ink: #13201f;
  --muted: #5c6867;
  --line: #dce7e3;
  --white: #ffffff;
  --mist: #f5faf8;
  --aqua: #dff7f2;
  --leaf: #e8f6de;
  --sage: #edf5e9;
  --blush: #fff0eb;
  --butter: #fff6d7;
  --lavender: #f3efff;
  --coral: #ff7d67;
  --gold: #f4c760;
  --green: #197653;
  --teal: #1d8fa3;
  --charcoal: #111817;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--mist);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px min(5vw, 64px);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(13, 22, 21, 0.76), rgba(13, 22, 21, 0.18));
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 1 auto;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  margin-top: 2px;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  min-width: 46px;
  max-width: 46px;
  height: 46px;
  min-height: 46px;
  max-height: 46px;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 46px;
  max-height: 46px;
  object-fit: cover;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 700;
  font-size: 14px;
}

nav a {
  color: rgba(255, 255, 255, 0.86);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 124px min(6vw, 78px) 80px;
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 14, 14, 0.94) 0%, rgba(8, 14, 14, 0.72) 34%, rgba(8, 14, 14, 0.28) 70%, rgba(8, 14, 14, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 14, 14, 0.24), rgba(8, 14, 14, 0.72));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--gold);
}

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

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

h2,
h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(11, 76, 54, 0.2);
}

.button.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.button.small {
  min-height: 40px;
  align-self: flex-start;
}

.signal-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(250, 253, 250, 0.92);
  box-shadow: 0 24px 60px rgba(16, 40, 35, 0.12);
}

.signal-strip span {
  flex: 1 1 170px;
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: #264d46;
  background: var(--sage);
  font-weight: 800;
  text-align: center;
}

.signal-strip span:nth-child(2) {
  background: var(--aqua);
}

.signal-strip span:nth-child(3) {
  background: var(--butter);
}

.signal-strip span:nth-child(4) {
  background: var(--blush);
}

.signal-strip span:nth-child(5) {
  background: var(--lavender);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article,
.product-stack article,
.product-card,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 20px;
}

.service-grid article:nth-child(1) {
  background: var(--butter);
}

.service-grid article:nth-child(2) {
  background: var(--aqua);
}

.service-grid article:nth-child(3) {
  background: var(--sage);
}

.service-grid article:nth-child(4) {
  background: var(--lavender);
}

.icon-badge,
.label {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 900;
}

.service-grid h3,
.product-layout h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-grid p,
.product-layout p,
.timeline p {
  color: var(--muted);
  line-height: 1.6;
}

.product-band {
  padding-bottom: 0;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 16px;
}

.feature-product {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  padding: 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(38, 80, 66, 0.96), rgba(64, 145, 143, 0.84)),
    url("/assets/risemode-hero.png") center / cover;
}

.mdi-feature-product {
  background:
    linear-gradient(135deg, rgba(15, 31, 35, 0.96), rgba(29, 143, 163, 0.78)),
    url("/assets/risemode-hero.png") center / cover;
}

.feature-product p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
}

.feature-product .label {
  color: var(--gold);
}

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

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.product-card-copy {
  position: relative;
  z-index: 1;
}

.product-card img {
  display: block;
  width: 100%;
  height: 210px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(19, 32, 31, 0.14);
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.product-card p {
  color: var(--muted);
  line-height: 1.6;
}

.product-meta,
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-meta {
  margin-bottom: 20px;
}

.product-meta span,
.store-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.product-meta span {
  color: #164b40;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(25, 118, 83, 0.18);
}

.store-row {
  margin: 16px 0 0;
}

.store-badge {
  color: #3c4746;
  background: rgba(255, 255, 255, 0.68);
  border: 1px dashed rgba(60, 71, 70, 0.34);
}

.store-badge.disabled {
  cursor: default;
}

.app-card {
  background: var(--aqua);
}

.field-card {
  background: var(--leaf);
}

.snake-card {
  background:
    linear-gradient(180deg, rgba(255, 246, 215, 0.96), rgba(255, 240, 235, 0.9));
}

.aero-card {
  background:
    linear-gradient(180deg, rgba(223, 247, 242, 0.96), rgba(231, 245, 251, 0.94));
}

.product-stack article:nth-child(1) {
  background: var(--blush);
}

.product-stack article:nth-child(2) {
  background: var(--leaf);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 900;
}

.text-link:hover {
  color: var(--teal);
}

.playbook {
  padding-bottom: 82px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
}

.legal {
  width: min(880px, calc(100% - 32px));
  margin: 112px auto 56px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  padding: 28px;
}

.legal h1 {
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}

.legal p {
  color: var(--muted);
  line-height: 1.7;
}

.legal .button {
  color: #ffffff;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px min(6vw, 78px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

footer strong,
footer span {
  display: block;
}

footer strong {
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.product-page {
  background: #f5faf8;
}

.product-header {
  background: linear-gradient(180deg, rgba(13, 22, 21, 0.88), rgba(13, 22, 21, 0.22));
}

.product-hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: 132px min(6vw, 78px) 76px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(31, 29, 34, 0.96), rgba(90, 52, 37, 0.84)),
    url("/assets/snake-ultra-board.png") center / cover;
}

.aero-hero {
  background:
    linear-gradient(120deg, rgba(9, 22, 32, 0.96), rgba(22, 83, 98, 0.82)),
    url("/assets/aeroradar-map.png") center / cover;
}

.product-hero-copy {
  max-width: 720px;
}

.product-hero h1 {
  font-size: clamp(44px, 7vw, 94px);
}

.product-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.58;
}

.product-hero .store-badge {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.44);
}

.product-hero-media {
  justify-self: center;
  width: min(620px, 100%);
}

.product-hero-media img {
  display: block;
  width: 100%;
  max-height: 68vh;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.phone-media {
  width: min(380px, 100%);
}

.phone-media img {
  aspect-ratio: 9 / 19;
  object-fit: cover;
}

.product-profile {
  padding-top: 86px;
}

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

.profile-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 22px;
}

.profile-grid article:nth-child(1) {
  background: var(--butter);
}

.profile-grid article:nth-child(2) {
  background: var(--aqua);
}

.profile-grid article:nth-child(3) {
  background: var(--lavender);
}

.profile-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 22px;
}

.profile-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.sneak-section {
  padding-bottom: 82px;
}

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

.snapshot-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(28, 64, 56, 0.08);
}

.snapshot-grid img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.aero-snapshots img {
  object-position: top center;
}

.snapshot-grid figcaption {
  min-height: 76px;
  padding: 16px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 800;
}

@media (max-width: 980px) {
  .service-grid,
  .timeline,
  .product-layout,
  .product-showcase-grid,
  .profile-grid,
  .snapshot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 82vh;
    padding-top: 154px;
  }

  .service-grid,
  .timeline,
  .product-layout,
  .product-showcase-grid,
  .profile-grid,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: -20px;
  }

  .product-hero {
    min-height: auto;
    padding-top: 154px;
  }

  .product-card img,
  .snapshot-grid img {
    height: 320px;
  }
}

.fieldguide-page {
  background: #f6fbf7;
}

.fieldguide-header {
  background: linear-gradient(180deg, rgba(12, 32, 28, 0.82), rgba(12, 32, 28, 0.28));
}

.fg-mark {
  color: #0f3d35;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.36) 34%, rgba(255, 255, 255, 0) 35%),
    linear-gradient(135deg, #d8f8ed, #5fd4bf 48%, #1d7863);
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.fg-app-mark {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.fg-app-mark img {
  object-fit: contain;
}

.fg-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 132px min(6vw, 78px) 86px;
  color: #ffffff;
}

.fg-hero-image,
.fg-hero-overlay {
  position: absolute;
  inset: 0;
}

.fg-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fg-hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 22, 0.92) 0%, rgba(9, 24, 22, 0.72) 32%, rgba(9, 24, 22, 0.18) 68%, rgba(9, 24, 22, 0.12) 100%),
    linear-gradient(180deg, rgba(9, 24, 22, 0.16), rgba(9, 24, 22, 0.66));
}

.fg-hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.fg-hero h1 {
  max-width: 760px;
}

.fg-hero p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
}

.fg-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.fg-hero-facts span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.fg-hero-facts strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 26px;
  line-height: 1;
}

.fg-observation-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: min(1180px, calc(100% - 32px));
  margin: -38px auto 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 12px;
  background: rgba(250, 254, 251, 0.94);
  box-shadow: 0 24px 60px rgba(16, 40, 35, 0.14);
}

.fg-observation-strip span {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #214d45;
  background: var(--aqua);
  font-weight: 900;
  text-align: center;
}

.fg-observation-strip span:nth-child(2) {
  background: var(--leaf);
}

.fg-observation-strip span:nth-child(3) {
  background: var(--butter);
}

.fg-observation-strip span:nth-child(4) {
  background: var(--lavender);
}

.fg-observation-strip span:nth-child(5) {
  background: var(--blush);
}

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

.fg-flow article,
.fg-category-grid article,
.fg-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 18px 42px rgba(28, 64, 56, 0.08);
}

.fg-flow article {
  background: rgba(255, 255, 255, 0.88);
}

.fg-step {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-weight: 900;
}

.fg-flow h3,
.fg-category-grid h3,
.fg-panel h3,
.fg-story-copy h2 {
  margin-bottom: 10px;
}

.fg-flow p,
.fg-category-grid p,
.fg-panel p,
.fg-story-copy p,
.fg-trust p {
  color: var(--muted);
  line-height: 1.65;
}

.fg-category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.fg-category-grid article {
  min-height: 250px;
}

.fg-category-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-weight: 900;
}

.fg-category-grid .plant {
  background: #edf8e7;
}

.fg-category-grid .bird {
  background: #e7f5fb;
}

.fg-category-grid .insect {
  background: #fff5d8;
}

.fg-category-grid .reptile {
  background: #f1eddf;
}

.fg-category-grid .animal {
  background: #f6edf8;
}

.fg-category-grid .aquatic {
  background: #e2f8f6;
}

.fg-category-grid .produce {
  background: #ffefea;
}

.fg-split {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fg-panel.aqua {
  background: var(--aqua);
}

.fg-panel.sage {
  background: var(--sage);
}

.fg-panel.butter {
  background: var(--butter);
}

.fg-panel.blush {
  background: var(--blush);
}

.fg-app-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.fg-story-copy {
  align-self: center;
}

.fg-stat-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.fg-stat-strip span {
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.fg-stat-strip strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 28px;
}

.fg-trust {
  padding-bottom: 82px;
}

.button.ghost.dark {
  color: var(--green);
  background: rgba(25, 118, 83, 0.08);
  border: 1px solid rgba(25, 118, 83, 0.24);
}

@media (max-width: 1180px) {
  .fg-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .fg-observation-strip,
  .fg-flow,
  .fg-category-grid,
  .fg-split,
  .fg-app-story {
    grid-template-columns: 1fr;
  }

  .fg-hero {
    min-height: 86vh;
    padding-top: 154px;
  }
}
