:root {
  --leaf-teal: #004e69;
  --leaf-teal-bright: #00739b;
  --leaf-berry: #a42067;
  --leaf-orange: #e25625;
  --leaf-cream: #f9f9f2;
  --leaf-ink: #15232c;
  --leaf-green: #547519;
  --leaf-border: rgba(0, 78, 105, 0.16);
  --leaf-shadow: 0 24px 70px rgba(0, 78, 105, 0.12);
}

@font-face {
  font-family: "Toyler";
  src: url("./fonts/TolyerNo2Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Toyler";
  src: url("./fonts/TolyerNo2Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(226, 86, 37, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(164, 32, 103, 0.08), transparent 24%),
    var(--leaf-cream);
  color: var(--leaf-ink);
  font-family: "Figtree", system-ui, sans-serif;
}

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

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

.announcement-bar {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  align-items: center;
  padding: 0.45rem 3rem;
  background: var(--leaf-teal);
  color: #fff;
  font-size: 0.76rem;
}

.announcement-bar p {
  margin: 0;
  opacity: 0.95;
}

.utility-nav {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.announcement-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.site-header,
.section-block,
.signup-section,
.site-footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 0 0.75rem;
}

.brand img,
.footer-brand img {
  width: 142px;
}

.site-nav,
.header-actions,
.footer-links {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--leaf-teal);
}

.site-nav a:hover,
.footer-links a:hover,
.utility-nav a:hover {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  transition: 180ms ease;
}

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

.button-primary {
  background: var(--leaf-teal);
  color: #fff;
}

.button-primary:hover {
  background: var(--leaf-teal-bright);
}

.button-secondary {
  background: #fff;
  color: var(--leaf-teal);
  border-color: var(--leaf-teal);
}

.button-secondary:hover {
  background: var(--leaf-cream);
}

.reference-demo {
  padding: 0.9rem 0 1.2rem;
}

.reference-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0.75rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 78, 105, 0.08);
  box-shadow: 0 18px 48px rgba(0, 78, 105, 0.08);
}

.reference-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-height: 372px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, rgba(249, 249, 242, 0.96) 0%, rgba(249, 249, 242, 0.92) 42%, rgba(249, 249, 242, 0.16) 62%);
}

.reference-hero-copy {
  position: relative;
  z-index: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reference-hero-image {
  position: relative;
  min-height: 372px;
}

.reference-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 249, 242, 0.82) 0%, rgba(249, 249, 242, 0.18) 28%, rgba(249, 249, 242, 0) 44%);
}

.reference-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reference-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1rem;
  margin-top: 0.75rem;
}

.info-panel {
  padding: 1.5rem 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid var(--leaf-border);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 12px 28px rgba(0, 78, 105, 0.05);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel-heading h2 {
  max-width: none;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.pill-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  background: var(--leaf-teal);
  color: #fff;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
}

.workshop-list {
  display: grid;
  gap: 0.7rem;
}

.workshop-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(249, 249, 242, 0.72);
  border: 1px solid rgba(0, 78, 105, 0.08);
}

.workshop-row strong {
  display: block;
  color: var(--leaf-teal);
  margin-bottom: 0.2rem;
}

.workshop-row p {
  margin: 0;
  color: rgba(21, 35, 44, 0.82);
}

.workshop-row span {
  flex: 0 0 auto;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 78, 105, 0.12);
  color: var(--leaf-teal);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.how-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.how-list li {
  position: relative;
  padding: 0.2rem 0 0.95rem 2.8rem;
  line-height: 1.55;
}

.how-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 78, 105, 0.1);
  color: var(--leaf-teal);
  font-weight: 800;
}

.how-list li + li {
  border-top: 1px solid rgba(0, 78, 105, 0.08);
  padding-top: 0.95rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--leaf-green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--leaf-teal);
  font-family: "Toyler", "Figtree", sans-serif;
  font-weight: 700;
  line-height: 0.95;
}

h1 {
  font-size: clamp(2.7rem, 4.9vw, 4.3rem);
  max-width: 8ch;
}

h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.7rem);
  max-width: 12ch;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--leaf-teal);
}

.hero-intro,
.section-heading p,
.feature-panel p,
.card-body p,
.timeline-card p,
.virtual-copy p,
.impact-grid p,
.impact-banner p,
.signup-card p,
.footer-brand p {
  line-height: 1.65;
}

.hero-intro {
  margin: 0.85rem 0 1.15rem;
  max-width: 42ch;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-bottom: 1.25rem;
}

.note-label,
.banner-label,
.card-kicker,
.timeline-date {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.timeline-date {
  color: var(--leaf-berry);
}

.impact-banner strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--leaf-teal);
}

.section-block,
.signup-section {
  padding: 4rem 0 1rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 0.9rem;
}

.section-heading.compact h2 {
  max-width: 14ch;
}

.experience-grid,
.timeline-grid,
.impact-grid {
  display: grid;
  gap: 1.4rem;
}

.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recipe-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.85fr));
  gap: 1.4rem;
}

.recipe-summary-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--leaf-border);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0, 78, 105, 0.06);
}

.recipe-summary-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.recipe-summary-card-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: stretch;
}

.recipe-summary-card-wide img {
  aspect-ratio: auto;
  height: 100%;
}

.recipe-summary-copy,
.card-body {
  padding: 1.2rem 1.2rem 1.35rem;
}

.recipe-summary-copy h3 {
  margin-bottom: 0.7rem;
}

.workshop-card,
.feature-panel,
.timeline-card,
.impact-grid article,
.signup-card,
.impact-banner {
  background: #fff;
  border: 1px solid var(--leaf-border);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0, 78, 105, 0.06);
}

.card-kicker {
  color: var(--leaf-orange);
}

.card-body h3 {
  margin-bottom: 0.7rem;
}

.meta-list,
.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.meta-list li,
.check-list li {
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.55;
}

.meta-list li + li,
.check-list li + li {
  margin-top: 0.35rem;
}

.meta-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--leaf-green);
}

.experience-layout .section-heading {
  margin-bottom: 1.5rem;
}

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

.feature-panel {
  padding: 1.25rem;
}

.feature-panel-teal {
  background: var(--leaf-teal);
  color: #fff;
}

.feature-panel-berry {
  background: var(--leaf-berry);
  color: #fff;
}

.feature-panel-teal h3,
.feature-panel-berry h3 {
  color: #fff;
}

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

.timeline-card {
  padding: 1.1rem;
}

.timeline-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.16rem;
}

.timeline-card p {
  margin: 0.25rem 0;
}

.virtual-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 1.4rem 1.4rem 1.4rem 2rem;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(0, 78, 105, 0.06), rgba(226, 86, 37, 0.05)),
    #fff;
  border: 1px solid var(--leaf-border);
  box-shadow: var(--leaf-shadow);
}

.phone-mock {
  display: flex;
  justify-content: center;
}

.phone-screen {
  width: min(350px, 100%);
  padding: 1rem;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--leaf-teal), #033649);
  color: #fff;
  box-shadow: 0 28px 60px rgba(0, 78, 105, 0.24);
}

.phone-screen img {
  width: 100%;
  aspect-ratio: 4 / 4.1;
  object-fit: cover;
  border-radius: 24px;
}

.phone-copy {
  padding: 1rem 0.3rem 0.2rem;
}

.phone-copy span {
  display: block;
  margin-bottom: 0.35rem;
  opacity: 0.76;
  font-size: 0.85rem;
}

.phone-copy strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.phone-copy p {
  margin: 0.15rem 0;
}

.impact-grid article,
.impact-banner,
.signup-card {
  padding: 1.35rem;
}

.impact-banner {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  margin-top: 1.4rem;
  background: linear-gradient(135deg, rgba(84, 117, 25, 0.1), rgba(255, 255, 255, 0.96));
}

.banner-label {
  color: var(--leaf-green);
}

.signup-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.signup-form {
  display: grid;
  gap: 1rem;
}

.signup-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--leaf-teal);
  font-weight: 700;
}

.signup-form span {
  font-size: 0.94rem;
}

.signup-form input,
.signup-form select {
  width: 100%;
  border: 1px solid rgba(0, 78, 105, 0.18);
  border-radius: 16px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--leaf-ink);
  background: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  padding: 4rem 0 3rem;
}

.footer-brand {
  max-width: 500px;
}

@media (max-width: 1080px) {
  .site-header,
  .site-footer,
  .impact-banner,
  .signup-card,
  .virtual-panel,
  .reference-hero,
  .reference-lower {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    display: grid;
  }

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

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

@media (max-width: 760px) {
.announcement-bar {
    padding: 0.65rem 1rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header,
  .section-block,
  .signup-section,
  .site-footer,
  .reference-shell {
    width: min(100% - 24px, 1240px);
  }

  .site-header {
    padding-top: 0.8rem;
  }

  .reference-shell {
    padding: 0.75rem;
  }

  .reference-hero {
    min-height: 0;
    border-radius: 22px 22px 0 0;
  }

  .reference-hero-copy {
    padding: 1.45rem 1.1rem;
  }

  .reference-hero-image {
    min-height: 280px;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .recipe-grid,
  .experience-grid,
  .timeline-grid,
  .impact-grid,
  .signup-card,
  .virtual-panel {
    grid-template-columns: 1fr;
  }

  .recipe-summary-card-wide {
    grid-template-columns: 1fr;
  }

  .recipe-summary-card-wide img {
    aspect-ratio: 4 / 3;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  h2 {
    max-width: none;
    font-size: clamp(1.5rem, 7.4vw, 2.1rem);
  }

  .site-nav,
  .header-actions,
  .footer-links {
    gap: 0.6rem;
  }
}
