:root {
  --charcoal: #101412;
  --coal: #18201c;
  --steel: #8fa09a;
  --cream: #f5f2e9;
  --paper: #fffaf0;
  --ember: #ff6a2a;
  --flame: #ffb347;
  --herb: #2f6b52;
  --mint: #dcefe5;
  --ink: #111513;
  --muted: #64736b;
  --line: #d9d1bf;
  --shadow: 0 24px 60px rgba(16, 20, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(245, 242, 233, 0.98), rgba(229, 236, 231, 0.88)),
    repeating-linear-gradient(90deg, rgba(16, 20, 18, 0.035) 0 1px, transparent 1px 96px);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--charcoal);
  color: white;
}

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

.hidden-field {
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(217, 209, 191, 0.78);
  background: rgba(245, 242, 233, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-inner,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
}

.site-nav a,
.header-action,
.button {
  text-decoration: none;
}

.header-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--charcoal);
  color: white;
  font-weight: 850;
}

.hero-section {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 44px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 32%, rgba(255, 106, 42, 0.25), transparent 28%),
    radial-gradient(circle at 74% 78%, rgba(47, 107, 82, 0.24), transparent 26%);
}

.hero-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(4rem, 8vw, 7.8rem);
  line-height: 0.88;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.12;
}

.hero-line {
  margin: 18px 0 0;
  color: var(--herb);
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 850;
  line-height: 1.08;
}

.hero-text,
.section-copy p,
.step-card p,
.qr-card p,
.site-footer p,
.form-note {
  color: var(--muted);
}

.hero-text {
  max-width: 660px;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  font-weight: 900;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover,
.header-action:hover,
.agent-prompts button:hover {
  transform: translateY(-1px);
}

.button-fire {
  background: var(--ember);
  color: white;
  box-shadow: 0 14px 28px rgba(255, 106, 42, 0.25);
}

.button-dark {
  background: var(--charcoal);
  color: white;
  box-shadow: 0 14px 28px rgba(16, 20, 18, 0.18);
}

.button-light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

.launch-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.launch-metrics div {
  min-height: 92px;
  border: 1px solid rgba(217, 209, 191, 0.85);
  border-radius: 8px;
  padding: 13px;
  background: rgba(255, 250, 240, 0.76);
}

.launch-metrics span,
.step-card span {
  display: block;
  color: var(--ember);
  font-size: 0.82rem;
  font-weight: 950;
}

.launch-metrics strong {
  display: block;
  margin-top: 10px;
  line-height: 1.12;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-section,
.menu-section,
.waitlist-section,
.owner-section {
  padding: 72px 0;
}

.founder-section,
.how-section,
.market-section,
.agent-section,
.legit-section,
.qr-section {
  padding: 72px 0;
  border-top: 1px solid rgba(217, 209, 191, 0.76);
}

.video-section,
.agent-section {
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 179, 71, 0.2), transparent 24%),
    linear-gradient(135deg, #111614, #1d2a24);
  color: white;
}

.video-section .section-copy p,
.agent-section .section-copy p {
  color: rgba(245, 242, 233, 0.75);
}

.video-layout,
.founder-layout,
.menu-layout,
.agent-layout,
.waitlist-layout,
.market-layout,
.legit-layout,
.owner-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1.15fr);
  gap: 32px;
  align-items: center;
}

.founder-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 106, 42, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.36);
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.creator-board {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: 16px;
  align-items: stretch;
}

.creator-videos {
  display: grid;
  gap: 16px;
}

.creator-screen,
.creator-steps div,
.market-grid article,
.checklist-panel {
  border: 1px solid rgba(217, 209, 191, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.creator-screen {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 20px;
  background:
    radial-gradient(circle at 60% 28%, rgba(255, 179, 71, 0.34), transparent 20%),
    radial-gradient(circle at 38% 52%, rgba(255, 106, 42, 0.32), transparent 24%),
    linear-gradient(145deg, #111614, #284032);
  color: white;
}

.creator-screen video {
  width: 100%;
  display: block;
  border-radius: 8px;
  background: #050706;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.screen-dot {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: block;
  margin-bottom: auto;
  background:
    radial-gradient(circle at 50% 35%, var(--flame) 0 16%, transparent 17%),
    radial-gradient(circle at 48% 52%, var(--ember) 0 34%, transparent 35%),
    #24342d;
}

.creator-screen strong {
  font-size: 1.75rem;
}

.creator-screen p,
.creator-steps p,
.market-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.creator-screen p {
  color: rgba(245, 242, 233, 0.76);
}

.creator-steps {
  display: grid;
  gap: 12px;
}

.creator-steps div,
.market-grid article {
  padding: 18px;
  background: rgba(255, 250, 240, 0.86);
}

.creator-steps span,
.market-grid span {
  display: block;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 950;
}

.section-copy.narrow {
  max-width: 760px;
  margin-bottom: 26px;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(245, 242, 233, 0.18);
  border-radius: 8px;
  background: black;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
}

.step-grid,
.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card,
.builder-panel,
.agent-panel,
.waitlist-form,
.qr-card,
.vault-panel {
  border: 1px solid rgba(217, 209, 191, 0.9);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: var(--shadow);
}

.step-card,
.qr-card {
  padding: 20px;
}

.step-card p,
.qr-card p {
  margin-bottom: 0;
}

.market-section {
  background:
    linear-gradient(180deg, rgba(16, 20, 18, 0.96), rgba(28, 45, 38, 0.96)),
    var(--charcoal);
  color: white;
}

.market-section .section-copy p {
  color: rgba(245, 242, 233, 0.76);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.market-grid article {
  border-color: rgba(245, 242, 233, 0.18);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 106, 42, 0.16), transparent 28%),
    rgba(255, 250, 240, 0.08);
}

.market-grid p {
  color: rgba(245, 242, 233, 0.74);
}

.builder-panel,
.waitlist-form,
.vault-panel {
  padding: 20px;
}

.builder-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

button:focus-visible,
a:focus-visible,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(255, 106, 42, 0.18);
  outline: none;
}

.meal-preview {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.meal-bowl {
  position: relative;
  width: 220px;
  aspect-ratio: 1;
  border: 18px solid #111513;
  border-radius: 34px;
  background:
    radial-gradient(circle at 35% 36%, #f3d68e 0 18%, transparent 19%),
    radial-gradient(circle at 65% 42%, #8d3b24 0 20%, transparent 21%),
    radial-gradient(circle at 43% 68%, #2f6b52 0 18%, transparent 19%),
    radial-gradient(circle at 68% 72%, #ffb347 0 12%, transparent 13%),
    var(--cream);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.food-chip {
  position: absolute;
  border-radius: 999px;
}

.food-chip.protein {
  width: 112px;
  height: 42px;
  left: 54px;
  top: 66px;
  background: #7b2d1c;
  transform: rotate(-18deg);
  box-shadow: inset 0 8px 0 rgba(255, 179, 71, 0.18);
}

.food-chip.base {
  width: 92px;
  height: 52px;
  left: 30px;
  top: 112px;
  background: #efd18b;
}

.food-chip.greens {
  width: 74px;
  height: 56px;
  right: 34px;
  bottom: 44px;
  background: #2f6b52;
}

.food-chip.sauce {
  width: 48px;
  height: 48px;
  right: 34px;
  top: 44px;
  background: #ff6a2a;
}

.meal-preview h3 {
  font-size: 1.6rem;
}

.meal-preview strong {
  display: inline-flex;
  margin-top: 10px;
  color: var(--herb);
  font-size: 1.1rem;
}

.agent-panel {
  overflow: hidden;
  background: rgba(255, 250, 240, 0.95);
  color: var(--ink);
}

.agent-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.agent-header strong,
.agent-header span {
  display: block;
}

.agent-header span {
  color: var(--herb);
  font-size: 0.84rem;
  font-weight: 850;
}

.agent-chat {
  height: 360px;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(220, 239, 229, 0.72), transparent),
    #fffaf0;
}

.message {
  width: min(82%, 640px);
  border-radius: 8px;
  padding: 12px;
  background: white;
  box-shadow: 0 8px 24px rgba(16, 20, 18, 0.08);
}

.message.user {
  justify-self: end;
  background: var(--ember);
  color: white;
}

.message strong,
.message span {
  display: block;
}

.message strong {
  margin-bottom: 4px;
  color: var(--herb);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.message.user strong {
  color: rgba(255, 255, 255, 0.82);
}

.agent-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 14px;
}

.agent-prompts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.agent-prompts button {
  min-height: 48px;
  border: 1px solid rgba(245, 242, 233, 0.18);
  border-radius: 8px;
  background: rgba(245, 242, 233, 0.09);
  color: white;
  padding: 10px 12px;
  text-align: left;
  font-weight: 900;
}

.founder-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.founder-list li {
  border-left: 4px solid var(--ember);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 850;
}

.waitlist-form,
.vault-panel {
  display: grid;
  gap: 14px;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.legit-section {
  background: rgba(255, 255, 255, 0.5);
}

.checklist-panel {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 250, 240, 0.9);
}

.checklist-panel label {
  min-height: 48px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: white;
  color: var(--ink);
  font-size: 0.95rem;
}

.checklist-panel input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--herb);
}

.qr-card {
  text-align: center;
}

.qr-card img {
  width: min(220px, 100%);
  border: 10px solid white;
  border-radius: 8px;
  background: white;
}

.qr-card h3 {
  margin-top: 12px;
}

.qr-card p {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.owner-section {
  border-top: 1px solid rgba(217, 209, 191, 0.76);
  background: rgba(255, 255, 255, 0.42);
}

.vault-summary {
  display: grid;
  gap: 6px;
  min-height: 82px;
  align-content: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 14px;
  background: white;
}

.vault-summary span {
  color: var(--muted);
}

.vault-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bank-teaser,
.bank-section {
  padding: 72px 0;
  border-top: 1px solid rgba(217, 209, 191, 0.76);
}

.bank-teaser {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(220, 239, 229, 0.74)),
    var(--paper);
}

.bank-teaser-layout,
.bank-hero-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(400px, 1.14fr);
  gap: 32px;
  align-items: center;
}

.bank-card-grid,
.fund-grid,
.asset-grid,
.proof-list,
.bank-stat-grid {
  display: grid;
  gap: 14px;
}

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

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

.asset-grid {
  grid-template-columns: minmax(180px, 0.55fr) minmax(180px, 0.55fr) minmax(320px, 1.15fr);
  align-items: stretch;
}

.bank-card-grid article,
.fund-grid article,
.asset-grid article,
.proof-list article,
.bank-hero-panel {
  border: 1px solid rgba(217, 209, 191, 0.9);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: var(--shadow);
}

.bank-card-grid article,
.fund-grid article,
.asset-grid article,
.proof-list article {
  padding: 18px;
}

.bank-card-grid span,
.fund-grid span,
.bank-stat-grid span {
  display: block;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.bank-card-grid strong,
.fund-grid strong,
.asset-grid strong,
.proof-list strong {
  display: block;
  margin-top: 7px;
  color: var(--charcoal);
  font-size: 1.2rem;
  line-height: 1.1;
}

.bank-card-grid p,
.fund-grid p,
.asset-grid p,
.proof-list p,
.bank-hero-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.bank-page {
  background:
    linear-gradient(180deg, rgba(245, 242, 233, 0.98), rgba(255, 250, 240, 0.94)),
    var(--cream);
}

.bank-hero {
  padding: 78px 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 179, 71, 0.22), transparent 28%),
    linear-gradient(135deg, #101412, #24342d);
  color: white;
}

.bank-hero h1,
.bank-hero .hero-line {
  color: white;
}

.bank-hero .hero-text,
.bank-hero .section-copy p {
  color: rgba(245, 242, 233, 0.78);
}

.bank-hero-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 106, 42, 0.16), transparent 25%),
    rgba(255, 250, 240, 0.95);
  color: var(--ink);
}

.bank-hero-panel img {
  width: min(260px, 100%);
}

.bank-stat-grid article {
  min-height: 114px;
  border: 1px solid rgba(217, 209, 191, 0.85);
  border-radius: 8px;
  padding: 16px;
  background: white;
}

.bank-stat-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--herb);
  font-size: 2.1rem;
  line-height: 1;
}

.execution-band {
  background:
    linear-gradient(180deg, rgba(16, 20, 18, 0.96), rgba(28, 45, 38, 0.96)),
    var(--charcoal);
  color: white;
}

.execution-band .section-copy p {
  color: rgba(245, 242, 233, 0.76);
}

.execution-band .proof-list article {
  border-color: rgba(245, 242, 233, 0.18);
  background: rgba(255, 250, 240, 0.08);
}

.execution-band .proof-list strong {
  color: white;
}

.execution-band .proof-list p {
  color: rgba(245, 242, 233, 0.74);
}

.bank-checklist {
  background: rgba(255, 250, 240, 0.9);
}

.assets-band {
  background: rgba(255, 255, 255, 0.42);
}

.asset-grid img {
  width: min(190px, 100%);
  display: block;
  margin-bottom: 14px;
}

.asset-grid video {
  width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 14px;
  background: black;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 44px;
}

.site-footer img {
  width: 220px;
}

.site-footer p {
  max-width: 740px;
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.site-footer a {
  min-height: 42px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: var(--charcoal);
  color: white;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero-inner,
  .video-layout,
  .founder-layout,
  .menu-layout,
  .agent-layout,
  .waitlist-layout,
  .market-layout,
  .legit-layout,
  .owner-layout,
  .bank-teaser-layout,
  .bank-hero-layout {
    grid-template-columns: 1fr;
  }

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

  .step-grid,
  .qr-grid,
  .creator-board,
  .market-grid,
  .fund-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .header-action {
    display: none;
  }

  .section-inner,
  .site-footer,
  .hero-inner {
    width: min(100% - 24px, 1180px);
  }

  .hero-section,
  .video-section,
  .founder-section,
  .how-section,
  .market-section,
  .menu-section,
  .agent-section,
  .waitlist-section,
  .legit-section,
  .qr-section,
  .owner-section,
  .bank-teaser,
  .bank-section,
  .bank-hero {
    padding: 46px 0;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .launch-metrics,
  .builder-controls,
  .meal-preview,
  .agent-form,
  .agent-prompts,
  .site-footer,
  .bank-card-grid,
  .bank-stat-grid {
    grid-template-columns: 1fr;
  }

  .meal-bowl {
    width: min(220px, 100%);
  }

  .message {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand small,
  .site-nav {
    font-size: 0.78rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-actions .button,
  .vault-actions .button {
    width: 100%;
  }
}
