:root {
  --cream: oklch(0.985 0.018 95);
  --cream-strong: oklch(1 0 0);
  --jungle: oklch(0.38 0.13 150);
  --jungle-dark: oklch(0.3 0.09 155);
  --jungle-deep: oklch(0.22 0.07 155);
  --lime: oklch(0.84 0.22 130);
  --lime-soft: oklch(0.92 0.13 128);
  --sun: oklch(0.9 0.18 95);
  --sun-soft: oklch(0.95 0.1 96);
  --card: rgba(255, 255, 255, 0.82);
  --line: rgba(14, 58, 39, 0.14);
  --gradient-tropical: linear-gradient(135deg, var(--lime) 0%, var(--sun) 100%);
  --gradient-jungle: linear-gradient(160deg, var(--jungle) 0%, var(--jungle-deep) 100%);
  --shadow: 0 24px 70px oklch(0.22 0.07 155 / 0.13);
  --shadow-card: 0 10px 30px -12px oklch(0.22 0.07 155 / 0.18);
  --shadow-glow: 0 30px 80px -20px oklch(0.84 0.22 130 / 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 92% 6%, oklch(0.84 0.22 130 / 0.42), transparent 33rem),
    radial-gradient(circle at 6% 22%, oklch(0.9 0.18 95 / 0.35), transparent 30rem),
    radial-gradient(circle at 48% 92%, oklch(0.92 0.13 128 / 0.32), transparent 34rem),
    var(--cream);
  color: var(--jungle-deep);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  border-bottom: 1px solid oklch(0.22 0.07 155 / 0.1);
  background: oklch(0.985 0.018 95 / 0.82);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.03em;
}

.brand span span {
  color: var(--jungle);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 16px;
  background: var(--gradient-tropical);
  color: var(--jungle-deep);
  font-size: 0.85rem;
  box-shadow: var(--shadow-glow);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(8, 36, 24, 0.74);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--jungle);
  color: var(--cream);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  background: var(--jungle-deep);
  transform: translateY(-1px);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.section {
  padding: 100px 0;
  scroll-margin-top: 84px;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 132px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 84% 16%, oklch(0.84 0.22 130 / 0.62), transparent 24rem),
    radial-gradient(circle at 9% 28%, oklch(0.9 0.18 95 / 0.44), transparent 22rem),
    radial-gradient(circle at 62% 82%, oklch(0.84 0.22 130 / 0.28), transparent 18rem);
  content: "";
}

.hero-blob {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.58;
  animation: float-slow 12s ease-in-out infinite;
}

.hero-blob-one {
  width: 520px;
  height: 520px;
  top: -170px;
  right: -150px;
  background: var(--gradient-tropical);
}

.hero-blob-two {
  width: 420px;
  height: 420px;
  left: -150px;
  top: 30%;
  background: var(--sun);
  animation-delay: -4s;
}

.hero-blob-three {
  width: 300px;
  height: 300px;
  right: 34%;
  bottom: -80px;
  background: var(--lime);
  animation-delay: -8s;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--jungle);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h1 span {
  background: var(--gradient-tropical);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(8, 36, 24, 0.74);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--jungle);
  color: var(--cream);
  box-shadow: 0 14px 34px rgba(31, 111, 74, 0.26);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.hero-card {
  position: relative;
  justify-self: end;
  width: min(100%, 440px);
  min-height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 42%, oklch(0.84 0.22 130 / 0.48), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(237, 248, 199, 0.58));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.scan-lines {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  opacity: 0.72;
}

.scan-ring {
  position: absolute;
  inset: 48px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(14, 58, 39, 0.2);
  border-radius: 50%;
}

.scan-ring::before {
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(14, 58, 39, 0.16);
  border-radius: 50%;
  content: "";
}

.pineapple-illustration {
  position: relative;
  z-index: 1;
  width: min(70%, 270px);
  display: block;
  filter: drop-shadow(0 34px 30px rgba(14, 58, 39, 0.18));
}

.metric-card {
  position: absolute;
  min-width: 112px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 13px 16px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 18px 42px rgba(14, 58, 39, 0.14);
}

.metric-card span {
  display: block;
  color: rgba(8, 36, 24, 0.62);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  color: var(--jungle-deep);
  font-size: 1.65rem;
  line-height: 1.1;
}

.metric-one {
  top: 68px;
  left: 20px;
}

.metric-two {
  right: 22px;
  top: 42%;
  background: var(--jungle);
  color: var(--cream);
}

.metric-two span,
.metric-two strong {
  color: var(--cream);
}

.metric-three {
  bottom: 68px;
  left: 36px;
}

.intro {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 86%, oklch(0.84 0.22 130 / 0.2), transparent 20rem),
    radial-gradient(circle at 86% 16%, oklch(0.9 0.18 95 / 0.34), transparent 24rem),
    rgba(255, 255, 255, 0.36);
}

.overview-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(251, 247, 232, 0.56)),
    radial-gradient(circle at 92% 20%, oklch(0.84 0.22 130 / 0.26), transparent 18rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.overview-panel::before {
  position: absolute;
  inset: -90px auto auto -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: var(--gradient-tropical);
  content: "";
  opacity: 0.22;
}

.overview-copy {
  position: relative;
  display: grid;
  align-content: center;
  padding: 22px;
}

.project-pill {
  width: fit-content;
  margin-bottom: 24px;
  border: 1px solid oklch(0.38 0.13 150 / 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--jungle);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overview-copy h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
}

.overview-copy p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(8, 36, 24, 0.68);
  font-size: 1.06rem;
}

.overview-system {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: center;
  border-radius: 32px;
  padding: 20px;
  background:
    radial-gradient(circle at 84% 16%, oklch(0.84 0.22 130 / 0.26), transparent 12rem),
    rgba(255, 255, 255, 0.46);
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.system-flow span {
  border-radius: 999px;
  padding: 10px 12px;
  background: oklch(0.84 0.22 130 / 0.22);
  color: var(--jungle-deep);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.overview-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.overview-cards article {
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(14, 58, 39, 0.07);
}

.overview-cards strong {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--gradient-tropical);
  color: var(--jungle-deep);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.86rem;
}

.overview-cards h3 {
  margin-bottom: 8px;
}

.overview-cards p {
  margin: 0;
  color: rgba(8, 36, 24, 0.64);
  font-size: 0.94rem;
}

#domain {
  background:
    radial-gradient(circle at 0% 20%, oklch(0.84 0.22 130 / 0.18), transparent 22rem),
    radial-gradient(circle at 100% 92%, oklch(0.9 0.18 95 / 0.22), transparent 24rem);
}

.product-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, oklch(0.84 0.22 130 / 0.3), transparent 26rem),
    radial-gradient(circle at 8% 84%, oklch(0.9 0.18 95 / 0.26), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), oklch(0.92 0.13 128 / 0.24));
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  gap: 64px;
  align-items: center;
}

.product-copy p:not(.eyebrow) {
  max-width: 520px;
  color: oklch(0.22 0.07 155 / 0.7);
  font-size: 1.05rem;
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-points span {
  border: 1px solid oklch(0.38 0.13 150 / 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--jungle-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 760px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 14px;
  background:
    radial-gradient(circle at 18% 14%, oklch(0.84 0.22 130 / 0.24), transparent 18rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.product-visual::before {
  position: absolute;
  inset: 34px;
  z-index: 1;
  border: 1px dashed oklch(0.84 0.22 130 / 0.62);
  border-radius: 28px;
  content: "";
  pointer-events: none;
}

.product-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.product-badge {
  position: absolute;
  z-index: 2;
  min-width: 128px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px 14px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 18px 42px rgba(14, 58, 39, 0.16);
  backdrop-filter: blur(10px);
}

.product-badge small {
  display: block;
  color: oklch(0.22 0.07 155 / 0.62);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-badge strong {
  display: block;
  color: var(--jungle-deep);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.badge-scan {
  left: 28px;
  top: 32px;
}

.badge-grade {
  right: 32px;
  top: 42%;
  background: var(--jungle);
}

.badge-grade small,
.badge-grade strong {
  color: var(--cream);
}

.badge-output {
  left: 42px;
  bottom: 34px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading p:not(.eyebrow) {
  color: rgba(8, 36, 24, 0.68);
  font-size: 1.05rem;
}

.section-heading.light,
.section-heading.light p:not(.eyebrow) {
  color: rgba(251, 247, 232, 0.78);
}

.section-heading.light h2 {
  color: var(--cream);
}

.cards {
  display: grid;
  gap: 20px;
}

.domain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  background: var(--card);
  box-shadow: 0 16px 46px rgba(14, 58, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card p {
  color: rgba(8, 36, 24, 0.66);
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: var(--gradient-tropical);
  font-size: 0.8rem;
  font-weight: 900;
}

.icon-svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.milestones-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, oklch(0.84 0.22 130 / 0.1), transparent 180px),
    radial-gradient(circle at 90% 18%, oklch(0.9 0.18 95 / 0.22), transparent 22rem),
    radial-gradient(circle at 0% 90%, oklch(0.84 0.22 130 / 0.22), transparent 22rem),
    var(--cream);
}

.roadmap-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.roadmap-desktop {
  position: relative;
  display: block;
  height: 500px;
  background: linear-gradient(180deg, transparent, oklch(0.84 0.22 130 / 0.05));
}

.roadmap-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.roadmap-path path {
  fill: none;
  stroke-linecap: round;
}

.road-shadow {
  stroke: oklch(0.22 0.07 155 / 0.14);
  stroke-width: 46;
}

.road-base {
  stroke: oklch(0.97 0.02 95 / 0.95);
  stroke-width: 28;
}

.road-dash {
  stroke: oklch(0.84 0.22 130 / 0.95);
  stroke-width: 4;
  stroke-dasharray: 10 14;
}

.road-node {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.road-node button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--jungle-deep);
  cursor: pointer;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  outline: 9px solid oklch(0.84 0.22 130 / 0.18);
  box-shadow: 0 0 0 2px var(--jungle), var(--shadow-card);
  transition: transform 180ms ease;
}

.road-node:hover button,
.road-node:focus-within button {
  transform: scale(1.12);
}

.node-one {
  left: 12%;
  top: 290px;
}

.node-two {
  left: 29%;
  top: 184px;
}

.node-three {
  left: 49.2%;
  top: 324px;
}

.node-four {
  left: 69%;
  top: 190px;
}

.node-five {
  left: 86%;
  top: 286px;
}

.road-card {
  position: absolute;
  left: 50%;
  width: 205px;
  border-radius: 24px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(14, 58, 39, 0.14);
  transform: translateX(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.road-card::before {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 32px;
  background: oklch(0.22 0.07 155 / 0.16);
  content: "";
  transform: translateX(-50%);
}

.road-card-top {
  bottom: 58px;
}

.road-card-top::before {
  top: 100%;
}

.road-card-bottom {
  top: 58px;
}

.road-card-bottom::before {
  bottom: 100%;
}

.road-node:hover .road-card,
.road-node:focus-within .road-card {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 24px 58px rgba(14, 58, 39, 0.18);
}

.road-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--jungle);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.road-card h3 {
  margin-bottom: 6px;
  color: var(--jungle-deep);
  font-size: 0.92rem;
}

.road-card p {
  margin-bottom: 12px;
  color: oklch(0.22 0.07 155 / 0.68);
  font-size: 0.72rem;
  line-height: 1.45;
}

.road-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.road-card span,
.roadmap-mobile span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--lime-soft);
  color: var(--jungle-deep);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-mobile {
  display: none;
  gap: 16px;
  padding: 22px;
}

.roadmap-mobile article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  background: linear-gradient(135deg, oklch(0.84 0.22 130 / 0.28), rgba(255, 255, 255, 0.82));
}

.roadmap-mobile span {
  width: 34px;
  height: 34px;
  justify-content: center;
  padding: 0;
  background: var(--jungle);
  color: var(--cream);
}

.roadmap-mobile h3 {
  margin-bottom: 4px;
  color: var(--jungle-deep);
}

.roadmap-mobile p {
  margin: 0;
  color: oklch(0.22 0.07 155 / 0.68);
  font-size: 0.9rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px);
  gap: 20px;
}

.resource-card,
.timeline a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 132px;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  background:
    radial-gradient(circle at 88% 14%, oklch(0.84 0.22 130 / 0.3), transparent 9rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(251, 247, 232, 0.68));
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.resource-card::before,
.timeline a::before {
  position: absolute;
  inset: auto -44px -70px auto;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: var(--gradient-tropical);
  content: "";
  opacity: 0.38;
}

.resource-card::after,
.timeline a::after {
  position: absolute;
  right: 18px;
  top: 16px;
  color: oklch(0.22 0.07 155 / 0.18);
  content: "View";
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resource-card:hover,
.timeline a:hover {
  border-color: var(--jungle);
  box-shadow: 0 28px 80px oklch(0.22 0.07 155 / 0.16);
  transform: translateY(-7px);
}

.resource-art {
  position: relative;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(14, 58, 39, 0.12);
  border-radius: 22px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 42px rgba(14, 58, 39, 0.12);
}

.document-art {
  border-top-right-radius: 10px;
}

.document-art::after {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 24px;
  height: 24px;
  border-left: 1px solid rgba(14, 58, 39, 0.12);
  border-bottom: 1px solid rgba(14, 58, 39, 0.12);
  border-bottom-left-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(240, 68, 56, 0.12));
  content: "";
}

.resource-content {
  display: grid;
  align-self: center;
  gap: 7px;
}

.resource-title,
.timeline strong {
  color: var(--jungle-deep);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.resource-kicker {
  color: var(--jungle);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.presentation-art {
  width: 94px;
  height: 86px;
  background:
    linear-gradient(90deg, rgba(249, 115, 22, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.8);
}

.resource-icon {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.icon-page {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(180, 35, 24, 0.24);
  stroke-width: 2;
}

.icon-fold {
  fill: none;
  stroke: rgba(180, 35, 24, 0.28);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.acrobat-mark {
  fill: none;
  stroke: #d92d20;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.screen {
  fill: rgba(255, 255, 255, 0.88);
  stroke: #ea580c;
  stroke-width: 3;
}

.screen-stand,
.chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.screen-stand {
  stroke: oklch(0.22 0.07 155 / 0.34);
  stroke-width: 4;
}

.chart-line {
  stroke: #f97316;
  stroke-width: 5;
}

.chart-dot {
  fill: var(--lime);
  stroke: #ffffff;
  stroke-width: 2;
}

.resource-card small,
.resource-content small,
.resource-content > span:last-child {
  color: rgba(8, 36, 24, 0.6);
  font-weight: 700;
}

.slides-section {
  background:
    radial-gradient(circle at 12% 12%, oklch(0.84 0.22 130 / 0.24), transparent 22rem),
    radial-gradient(circle at 92% 70%, oklch(0.9 0.18 95 / 0.26), transparent 24rem),
    oklch(0.92 0.13 128 / 0.44);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 18px;
}

.timeline a {
  min-height: 150px;
  background:
    radial-gradient(circle at 92% 10%, oklch(0.9 0.18 95 / 0.44), transparent 10rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(251, 247, 232, 0.64));
}

.about-section,
.contact-section {
  background: var(--gradient-jungle);
  color: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lecturer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.team-card {
  border: 1px solid rgba(199, 245, 91, 0.22);
  border-radius: 30px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.lecturer-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.avatar {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.46), transparent 38%),
    linear-gradient(135deg, var(--lime), var(--sun));
  color: var(--jungle-deep);
  font-size: 2rem;
  font-weight: 900;
}

.avatar-circle {
  width: min(220px, 100%);
  border-radius: 50%;
}

.avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.team-card h3 {
  color: var(--cream);
}

.team-card p {
  color: rgba(251, 247, 232, 0.64);
}

.team-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--lime);
  font-size: 0.88rem;
  font-weight: 800;
  word-break: break-word;
}

.contact-section {
  padding-top: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.contact-grid h2 {
  color: var(--cream);
}

.contact-grid p {
  max-width: 640px;
  color: rgba(251, 247, 232, 0.72);
  font-size: 1.05rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: rgba(251, 247, 232, 0.74);
  font-weight: 700;
}

.contact-list a {
  color: var(--lime);
}

.contact-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(199, 245, 91, 0.22);
  border-radius: 30px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form label {
  color: rgba(251, 247, 232, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(199, 245, 91, 0.16);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--jungle-deep);
  font: inherit;
}

.contact-form button {
  min-height: 50px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--sun);
  color: var(--jungle-deep);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.footer {
  border-top: 1px solid rgba(199, 245, 91, 0.16);
  background: var(--jungle-deep);
  color: rgba(251, 247, 232, 0.66);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -30px) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .nav-cta {
    align-self: flex-start;
  }

  .hero {
    padding-top: 178px;
  }

  .hero-grid,
  .overview-panel,
  .product-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .overview-copy {
    padding: 10px;
  }

  .hero-card {
    justify-self: center;
    width: min(100%, 430px);
  }

  .product-visual {
    max-width: 760px;
    margin: 0 auto;
  }

  .roadmap-desktop {
    display: none;
  }

  .roadmap-mobile {
    display: grid;
  }

  .domain-grid,
  .lecturer-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 198px;
  }

  .hero-card {
    width: min(100%, 360px);
    border-radius: 32px;
  }

  .scan-ring {
    inset: 34px;
  }

  .metric-card {
    min-width: 92px;
    padding: 10px 12px;
  }

  .product-badge {
    min-width: 104px;
    padding: 10px 12px;
  }

  .product-badge strong {
    font-size: 1.18rem;
  }

  .product-badge small {
    font-size: 0.58rem;
  }

  .badge-scan {
    left: 20px;
    top: 22px;
  }

  .badge-grade {
    right: 22px;
  }

  .badge-output {
    left: 24px;
    bottom: 24px;
  }

  .metric-card strong {
    font-size: 1.28rem;
  }

  .metric-card span {
    font-size: 0.62rem;
  }

  .metric-one {
    top: 56px;
    left: 14px;
  }

  .metric-two {
    right: 14px;
  }

  .metric-three {
    bottom: 54px;
    left: 20px;
  }

  .domain-grid,
  .resource-grid,
  .timeline,
  .overview-cards,
  .lecturer-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .overview-panel {
    border-radius: 30px;
    padding: 18px;
  }

  .overview-system {
    padding: 14px;
  }

  .system-flow {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
  }

  .nav-links {
    gap: 10px 14px;
    font-size: 0.84rem;
  }

  .nav-cta {
    min-height: 38px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
