:root {
  --landing-bg: #f6f1e8;
  --landing-sand: #ebe2d3;
  --landing-gold: #c28a44;
  --landing-gold-soft: rgba(194, 138, 68, 0.18);
  --landing-forest: #14382f;
  --landing-forest-soft: #235346;
  --landing-ink: #14211b;
  --landing-muted: #5a665f;
  --landing-line: rgba(20, 33, 27, 0.12);
  --landing-shadow: 0 30px 80px rgba(22, 29, 25, 0.13);
  --landing-heading-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --landing-body-font: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(194, 138, 68, 0.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(21, 128, 61, 0.10), transparent 24%),
    linear-gradient(180deg, #fbf8f3 0%, var(--landing-bg) 56%, #f7f3ed 100%);
  color: var(--landing-ink);
  font-family: var(--landing-body-font);
}

.landing-skip-link {
  background: var(--landing-forest);
  border-radius: 999px;
  color: #fff;
  left: 20px;
  padding: 12px 16px;
  position: absolute;
  text-decoration: none;
  top: -64px;
  transition: top 160ms ease;
  z-index: 40;
}

.landing-skip-link:focus {
  top: 20px;
}

.landing-page-shell {
  max-width: 1380px;
  padding: 24px clamp(18px, 3vw, 40px) 72px;
  margin: 0 auto;
}

.landing-header {
  margin-bottom: 24px;
  position: sticky;
  top: 14px;
  z-index: 20;
}

.landing-header__bar {
  align-items: center;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(135deg, rgba(255, 251, 245, 0.86), rgba(244, 240, 232, 0.78));
  border: 1px solid rgba(20, 33, 27, 0.06);
  border-radius: 34px;
  box-shadow: 0 16px 42px rgba(24, 34, 27, 0.08);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 18px 22px;
}

.landing-brand {
  align-items: baseline;
  color: inherit;
  display: inline-grid;
  gap: 0;
  min-width: 0;
  text-decoration: none;
}

.landing-brand__meta {
  display: grid;
  gap: 3px;
}

.landing-brand__kicker {
  color: rgba(20, 56, 47, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-brand__title {
  color: var(--landing-forest);
  font-family: var(--landing-heading-font);
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.landing-nav {
  background: rgba(255, 251, 246, 0.72);
  border: 1px solid rgba(20, 33, 27, 0.06);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
  padding: 5px;
}

.landing-nav__link {
  border-radius: 999px;
  color: rgba(20, 33, 27, 0.86);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 11px 18px;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.landing-nav__link:hover,
.landing-nav__link:focus-visible {
  background: rgba(255, 255, 255, 0.84);
  color: var(--landing-forest);
  transform: translateY(-1px);
}

.landing-header__cta {
  align-items: center;
  background: linear-gradient(135deg, #1c7840, #164c2c);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  justify-content: center;
  min-height: 56px;
  min-width: 176px;
  padding: 0 26px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.landing-header__cta:hover,
.landing-header__cta:focus-visible {
  box-shadow: 0 18px 34px rgba(20, 89, 45, 0.22);
  filter: saturate(1.04);
  transform: translateY(-1px);
}

.landing-main {
  display: grid;
  gap: 76px;
}

.landing-hero {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  align-items: center;
  min-height: calc(100svh - 160px);
  position: relative;
}

.landing-hero::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.88), transparent 34%),
    linear-gradient(135deg, rgba(20, 56, 47, 0.08), rgba(194, 138, 68, 0.12));
  border-radius: 42px;
  content: '';
  inset: 0;
  position: absolute;
  z-index: 0;
}

.landing-hero__copy,
.landing-hero__visual {
  position: relative;
  z-index: 1;
}

.landing-hero__copy {
  padding: clamp(28px, 4vw, 54px);
}

.landing-kicker,
.landing-section__eyebrow,
.landing-closing__eyebrow,
.landing-role-block__eyebrow {
  color: var(--landing-forest-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.landing-hero__headline,
.landing-section__title,
.landing-closing__title {
  font-family: var(--landing-heading-font);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0;
}

.landing-hero__headline {
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  max-width: 9ch;
}

.landing-hero__lead {
  color: color-mix(in srgb, var(--landing-ink) 94%, var(--landing-forest-soft));
  font-size: clamp(1.12rem, 1.8vw, 1.36rem);
  line-height: 1.68;
  margin: 24px 0 0;
  max-width: 33rem;
}

.landing-hero__body,
.landing-section__copy,
.landing-role-block__copy,
.landing-flow-step__copy,
.landing-app-band__description,
.landing-closing__copy {
  color: var(--landing-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.landing-hero__body {
  margin: 18px 0 0;
  max-width: 34rem;
}

.landing-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.landing-tag {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(20, 56, 47, 0.08);
  border-radius: 999px;
  color: var(--landing-forest);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 14px;
}

.landing-hero__subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.landing-inline-link {
  color: var(--landing-forest);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
}

.landing-inline-link:hover,
.landing-inline-link:focus-visible {
  color: var(--landing-gold);
}

.landing-hero__note {
  border-top: 1px solid var(--landing-line);
  color: color-mix(in srgb, var(--landing-ink) 76%, var(--landing-muted));
  font-size: 0.96rem;
  margin: 28px 0 0;
  max-width: 32rem;
  padding-top: 18px;
}

.landing-hero__visual {
  padding: clamp(24px, 3vw, 34px);
}

.landing-hero__image-frame {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(180deg, #f8f3ea 0%, #efe6d7 100%);
  border: 1px solid rgba(20, 33, 27, 0.08);
  border-radius: 34px;
  box-shadow: var(--landing-shadow);
  overflow: hidden;
  position: relative;
}

.landing-hero__image {
  display: block;
  height: auto;
  transform: translateY(0);
  width: 100%;
  will-change: transform;
}

.landing-floating-card {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 33, 27, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(20, 33, 27, 0.12);
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  position: absolute;
}

.landing-floating-card--left {
  bottom: 8%;
  left: 0;
}

.landing-floating-card--right {
  right: 2%;
  top: 8%;
}

.landing-floating-card__label {
  color: var(--landing-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-section {
  display: grid;
  gap: 24px;
}

.landing-section__head,
.landing-manifesto__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.92fr);
}

.landing-section__title,
.landing-closing__title {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  max-width: 13ch;
}

.landing-manifesto {
  border-top: 1px solid var(--landing-line);
  padding-top: 34px;
}

.landing-app-list {
  border-top: 1px solid var(--landing-line);
}

.landing-app-band {
  align-items: start;
  border-bottom: 1px solid var(--landing-line);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 0.9fr) minmax(260px, 0.8fr);
  padding: 30px 0;
}

.landing-app-band--live {
  background:
    linear-gradient(90deg, rgba(194, 138, 68, 0.06), transparent 24%);
}

.landing-app-band__meta {
  display: grid;
  gap: 14px;
}

.landing-app-band__status {
  align-items: center;
  background: rgba(20, 56, 47, 0.08);
  border-radius: 999px;
  color: var(--landing-forest);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 8px 12px;
  text-transform: uppercase;
  width: fit-content;
}

.landing-app-band__status--future {
  background: rgba(194, 138, 68, 0.13);
  color: #8c5d1d;
}

.landing-app-band__title,
.landing-role-block__title,
.landing-flow-step__title {
  font-family: var(--landing-heading-font);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.02;
  margin: 0;
}

.landing-app-band__capabilities,
.landing-role-block__list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-app-band__capabilities li,
.landing-role-block__list li {
  border-top: 1px solid rgba(20, 33, 27, 0.08);
  color: var(--landing-ink);
  line-height: 1.55;
  padding-top: 12px;
}

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

.landing-role-block {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(20, 33, 27, 0.08);
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(20, 33, 27, 0.06);
  min-height: 100%;
  padding: 28px;
}

.landing-role-block__title {
  font-size: 2rem;
  margin-top: 2px;
}

.landing-flow-list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-flow-step {
  align-items: start;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 33, 27, 0.08);
  border-radius: 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: 88px minmax(0, 1fr);
  padding: 24px;
}

.landing-flow-step__index {
  color: rgba(20, 56, 47, 0.44);
  font-family: var(--landing-heading-font);
  font-size: 2.35rem;
  line-height: 1;
}

.landing-closing {
  background:
    radial-gradient(circle at top right, rgba(194, 138, 68, 0.18), transparent 28%),
    linear-gradient(140deg, rgba(20, 56, 47, 0.96), rgba(12, 28, 24, 0.98));
  border-radius: 38px;
  color: #f4efe7;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  position: relative;
}

.landing-closing::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 58%);
  content: '';
  height: 320px;
  position: absolute;
  right: -80px;
  top: -120px;
  width: 320px;
}

.landing-closing__eyebrow {
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  z-index: 1;
}

.landing-closing__title,
.landing-closing__copy {
  position: relative;
  z-index: 1;
}

.landing-closing__title {
  color: #fefaf4;
}

.landing-closing__copy {
  color: rgba(255, 250, 244, 0.78);
  margin: 18px 0 0;
  max-width: 38rem;
}

.landing-footer {
  margin-top: 44px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes landing-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.landing-hero__image-frame,
.landing-floating-card--right {
  animation: landing-float 7.5s ease-in-out infinite;
}

.landing-floating-card--left {
  animation: landing-float 8.5s ease-in-out infinite reverse;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .landing-hero__image-frame,
  .landing-floating-card {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .landing-header__bar {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 14px;
  }

  .landing-nav {
    justify-self: start;
  }

  .landing-header__cta {
    justify-self: start;
  }

  .landing-hero,
  .landing-section__head,
  .landing-manifesto__grid,
  .landing-app-band {
    grid-template-columns: 1fr;
  }

  .landing-role-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    min-height: auto;
  }

  .landing-hero__headline {
    max-width: 11ch;
  }

  .landing-floating-card--left {
    left: 2%;
  }
}

@media (max-width: 720px) {
  .landing-page-shell {
    padding: 14px 14px 48px;
  }

  .landing-header {
    position: static;
    margin-bottom: 14px;
  }

  .landing-header__bar {
    border-radius: 28px;
    gap: 12px;
    padding: 16px 16px 14px;
  }

  .landing-brand__meta {
    gap: 4px;
  }

  .landing-brand__title {
    font-size: 1.72rem;
    line-height: 0.94;
  }

  .landing-brand__kicker {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .landing-nav {
    display: none;
  }

  .landing-header__cta {
    align-self: start;
    justify-self: start;
    min-height: 42px;
    min-width: 0;
    padding: 0 18px;
    width: auto;
  }
}

@media (max-width: 900px) {
  .landing-hero {
    gap: 18px;
  }

  .landing-hero__copy,
  .landing-hero__visual {
    padding: 20px;
  }

  .landing-role-grid {
    display: block;
  }

  .landing-role-block {
    margin-top: 16px;
    min-height: auto;
  }

  .landing-role-block:first-child {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .landing-main {
    gap: 44px;
  }

  .landing-hero {
    min-height: auto;
  }

  .landing-hero::before {
    border-radius: 30px;
  }

  .landing-hero__copy {
    padding: 22px 20px 8px;
  }

  .landing-hero__headline {
    font-size: clamp(2.2rem, 10.8vw, 3.3rem);
    line-height: 0.98;
    max-width: 8.5ch;
  }

  .landing-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    margin-bottom: 14px;
  }

  .landing-hero__lead {
    font-size: 1rem;
    line-height: 1.55;
    margin-top: 18px;
  }

  .landing-hero__body {
    font-size: 0.98rem;
    line-height: 1.68;
    margin-top: 14px;
  }

  .landing-hero__tags,
  .landing-hero__subnav,
  .landing-hero__note {
    display: none;
  }

  .landing-section__title,
  .landing-closing__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .landing-app-band__title,
  .landing-role-block__title,
  .landing-flow-step__title {
    font-size: 1.65rem;
  }

  .landing-floating-card {
    position: static;
  }

  .landing-hero__visual {
    display: grid;
    gap: 14px;
    padding: 0 16px 18px;
  }

  .landing-flow-step {
    grid-template-columns: 1fr;
  }

  .landing-flow-step__index {
    font-size: 1.8rem;
  }
}
