/* Sweet Potato / SPAPS landing page
   Creative seed: Fl064lmseHF9WB91u0OBb0aLBIpsiziKRsLBbfJM7Rx4ZYD3z3eNnzf1fmzjlUbjtah01i4gQONmIQAJavEQJq9dBuCzPpt0rkuHOWmK5D2gr6kgKW32562BvjH5pJgJ
   #32562B appears verbatim in the seed and anchors the palette. */

:root {
  --ink: #142016;
  --ink-soft: #29372b;
  --forest: #32562b;
  --forest-dark: #1d321f;
  --moss: #77955d;
  --acid: #dff064;
  --acid-soft: #edf7a6;
  --cream: #f4f0e5;
  --paper: #fffdf6;
  --paper-2: #ebe6d8;
  --potato: #df7149;
  --potato-light: #f2b18f;
  --lavender: #a897e8;
  --line: rgba(20, 32, 22, 0.16);
  --line-strong: rgba(20, 32, 22, 0.32);
  --white-line: rgba(255, 253, 246, 0.16);
  --muted: #657066;
  --radius: 27px;
  --radius-small: 14px;
  --shadow: 0 24px 70px rgba(20, 32, 22, 0.13);
  --shadow-soft: 0 12px 38px rgba(20, 32, 22, 0.08);
  --sans: "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, sans-serif;
  --mono: "SFMono-Regular", "Roboto Mono", "Cascadia Code", Consolas, monospace;
  --serif: Georgia, "Times New Roman", serif;
  --shell: min(1240px, calc(100vw - 48px));
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(223, 240, 100, 0.12), transparent 30%),
    var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

:focus-visible {
  outline: 3px solid var(--potato);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: var(--line);
  background: rgba(244, 240, 229, 0.9);
  box-shadow: 0 10px 32px rgba(20, 32, 22, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: visible;
}

.brand-leaf {
  fill: var(--acid);
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linejoin: round;
}

.brand-leaf-two {
  fill: var(--moss);
}

.brand-stem {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.brand-tuber {
  fill: var(--potato);
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: var(--ink);
  opacity: 0.38;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 16px;
  letter-spacing: -0.04em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--potato);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 90;
  padding: 42px 24px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 700;
  letter-spacing: -0.05em;
}

/* Buttons */

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 11px;
}

.button-ink {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 8px 22px rgba(20, 32, 22, 0.15);
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 12px 28px rgba(139, 161, 51, 0.2);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(139, 161, 51, 0.3);
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 253, 246, 0.24);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.button-acid {
  color: var(--ink);
  background: var(--acid);
}

.button-dark-ghost {
  color: var(--paper);
  border-color: rgba(255, 253, 246, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.button-dark-ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

