:root {
  --bg: #f8f2e8;
  --bg-strong: #f3e4cf;
  --surface: rgba(255, 252, 245, 0.74);
  --surface-strong: rgba(255, 248, 235, 0.92);
  --ink: #14221d;
  --muted: #44534d;
  --line: rgba(20, 34, 29, 0.12);
  --accent: #f06c3e;
  --accent-deep: #cc4b1f;
  --accent-soft: rgba(240, 108, 62, 0.12);
  --leaf: #2d6a4f;
  --shadow: 0 24px 60px rgba(82, 58, 31, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(240, 108, 62, 0.22), transparent 28%),
    radial-gradient(circle at right 20%, rgba(45, 106, 79, 0.18), transparent 26%),
    linear-gradient(180deg, #fbf6ef 0%, var(--bg) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.75;
}

body::before {
  width: 14rem;
  height: 14rem;
  top: 7rem;
  right: -3rem;
  background: rgba(240, 108, 62, 0.14);
}

body::after {
  width: 18rem;
  height: 18rem;
  bottom: 8rem;
  left: -6rem;
  background: rgba(45, 106, 79, 0.12);
}

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

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 250, 241, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(20, 34, 29, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(109, 78, 43, 0.08);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brandmark__dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ffc857 100%);
  box-shadow: 0 0 0 0.35rem rgba(240, 108, 62, 0.12);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: 5.5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  gap: 2rem;
  padding-top: 5rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  line-height: 0.95;
}

h2 {
  max-width: 14ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.lead {
  max-width: 62ch;
  margin: 1.6rem 0 0;
  font-size: 1.08rem;
}

.hero__focus {
  max-width: 58ch;
  margin: 1rem 0 0;
  font-weight: 700;
  color: var(--ink);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.proof-strip div {
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(20, 34, 29, 0.08);
  border-radius: 18px;
  background: rgba(255, 252, 245, 0.68);
}

.proof-strip strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button--primary {
  background: var(--accent);
  color: #fff6ef;
  box-shadow: 0 18px 30px rgba(240, 108, 62, 0.22);
}

.button--ghost {
  background: rgba(255, 252, 245, 0.8);
  border-color: rgba(20, 34, 29, 0.1);
}

.hero__panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-visual {
  margin: 0;
  padding: 0.7rem;
  border: 1px solid rgba(20, 34, 29, 0.08);
  border-radius: 22px;
  background: rgba(255, 252, 245, 0.72);
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: min(35rem, 62vh);
  aspect-ratio: 1024 / 1536;
  object-fit: cover;
  border-radius: 16px;
}

.hero-card--compact {
  display: grid;
  gap: 1rem;
}

.hero-card__section {
  padding: 0;
}

.hero-card__section--accent {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(240, 108, 62, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(240, 108, 62, 0.08), rgba(255, 252, 245, 0.84));
}

.hero-card,
.brand-card,
.model-card,
.opportunity-card,
.contact-card,
.timeline__item {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid rgba(20, 34, 29, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card::after,
.brand-card::after,
.model-card::after,
.opportunity-card::after,
.timeline__item::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 72%);
}

.hero-card--accent {
  background: linear-gradient(180deg, rgba(240, 108, 62, 0.12), rgba(255, 252, 245, 0.82));
}

.hero-card__label,
.brand-card__tag {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf);
}

.hero-card__text {
  margin: 0;
}

.signal-list,
.chip-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
}

.signal-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

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

.section-heading p:last-child {
  max-width: 58ch;
  margin-top: 1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0 4rem;
}

.trust-card {
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(20, 34, 29, 0.08);
  border-radius: 18px;
  background: rgba(255, 252, 245, 0.72);
  box-shadow: 0 16px 36px rgba(109, 78, 43, 0.07);
}

.trust-card__label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.trust-card__value {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.brand-grid,
.model-grid,
.opportunity-grid {
  display: grid;
  gap: 1.25rem;
}

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

.brand-card,
.opportunity-card {
  min-height: 16rem;
}

.brand-card__meta {
  margin: 0.9rem 0 0;
  color: var(--ink);
  font-weight: 700;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.channel-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.channel-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 252, 245, 0.66);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.channel-list a:hover,
.channel-list a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 108, 62, 0.28);
  background: rgba(255, 248, 241, 0.96);
}

.channel-list a span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.channel-list a span:last-child {
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.chip-list li {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--accent-soft);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
}

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

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

.vision {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
}

.founder-note {
  padding-top: 1rem;
}

.vision__content p:last-child {
  max-width: 58ch;
  margin-top: 1rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline__item span {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(45, 106, 79, 0.1);
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline__item p {
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.contact-card {
  min-width: 280px;
  background: var(--surface-strong);
}

.contact-card p,
.contact-card a {
  margin: 0;
  display: block;
}

.contact-copy {
  max-width: 52ch;
  margin-top: 1rem;
}

.error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  max-width: 44rem;
}

.contact-card a {
  margin: 0.35rem 0;
  color: var(--accent-deep);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.footer-links a {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.copyright {
  margin-top: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .hero,
  .section--split,
  .vision,
  .site-footer,
  .opportunity-grid {
    grid-template-columns: 1fr;
  }

  .opportunity-grid {
    display: grid;
  }

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

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .site-header {
    border-radius: 1.4rem;
    padding: 1rem;
  }

  .brand-grid,
  .model-grid,
  .proof-strip,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.8rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .hero-visual img {
    height: auto;
    max-height: none;
  }

  h2 {
    max-width: 13ch;
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy,
  .hero__panel,
  .brand-card,
  .model-card,
  .opportunity-card,
  .vision__content,
  .timeline__item,
  .contact-card {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 720ms ease forwards;
  }

  .hero__panel {
    animation-delay: 120ms;
  }

  .brand-card:nth-child(2),
  .model-card:nth-child(2),
  .opportunity-card:nth-child(2),
  .timeline__item:nth-child(2) {
    animation-delay: 120ms;
  }

  .model-card:nth-child(3),
  .opportunity-card:nth-child(3),
  .timeline__item:nth-child(3) {
    animation-delay: 200ms;
  }

  .model-card:nth-child(4),
  .opportunity-card:nth-child(4),
  .contact-card {
    animation-delay: 280ms;
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
