/* Adobenauts — Adobe Spectrum / adobe.com storytelling */
:root {
  --red: #eb1000;
  --red-dark: #c40700;
  --red-soft: #fff1ef;
  --ink: #2c2c2c;
  --muted: #6e6e6e;
  --line: #e6e6e6;
  --bg: #ffffff;
  --wash: #f7f7f7;
  --dark: #1d1d1d;
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button, a { font-family: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; color: inherit; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.02em; }
.brand b { color: var(--red); font-weight: 800; }
.brand span { color: var(--muted); font-weight: 500; font-size: 13px; }
.links { display: flex; gap: 4px; }
.links a {
  font-size: 13px; font-weight: 600; color: var(--muted);
  padding: 8px 10px; border-radius: 999px;
}
.links a:hover, .links a.on { color: var(--ink); background: var(--wash); }
.links a.cta { background: var(--red); color: #fff; padding: 8px 14px; }
.links a.cta:hover { background: var(--red-dark); color: #fff; }
.burger { display: none; width: 36px; height: 36px; }
.burger span { display: block; height: 2px; background: var(--ink); margin: 7px 6px; }
.progress { height: 2px; background: var(--red); width: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 24px; border: none;
}
.btn:hover { background: var(--red-dark); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }

/* Hero */
.hero {
  min-height: calc(100vh - 66px);
  display: grid; place-items: center;
  padding: 64px 0 80px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(235,16,0,.08), transparent 50%),
    linear-gradient(#fff, #fafafa);
}
.hero-in { width: min(820px, calc(100% - 48px)); text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800; letter-spacing: -.04em; line-height: .95;
}
.hero h1 em { font-style: normal; color: var(--red); }
.lede {
  margin: 22px auto 0; max-width: 540px;
  font-size: 20px; color: var(--muted); font-weight: 500;
}
.meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 28px 0 32px; }
.chip {
  font-size: 13px; font-weight: 600; color: var(--ink);
  border: 1px solid var(--line); background: #fff;
  padding: 7px 12px; border-radius: 999px;
}
.scroll-hint { margin-top: 48px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* Stats */
.stats { background: var(--dark); color: #fff; padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stats .n { font-size: 36px; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.stats .n span { color: var(--red); }
.stats .l { margin-top: 4px; font-size: 13px; color: #b3b3b3; }

/* Sections */
.sec { padding: 88px 0; }
.sec.wash { background: var(--wash); }
.sec.dark { background: var(--dark); color: #fff; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.sec h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
  max-width: 16ch;
}
.sec .one {
  margin-top: 12px; max-width: 46ch; color: var(--muted); font-size: 18px; font-weight: 500;
}
.sec.dark .one { color: #bdbdbd; }
.head { margin-bottom: 36px; }

/* Timeline */
.eras { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.eras button {
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-weight: 700; font-size: 14px; color: var(--muted);
}
.eras button.on { background: var(--red); color: #fff; border-color: var(--red); }
.tl-stage {
  display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px;
}
.who { text-align: center; }
.avatar {
  width: 120px; height: 120px; margin: 0 auto 12px; border-radius: 50%;
  background: var(--red-soft) url("assets/src/origins.png") center / 220% no-repeat;
  border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line);
}
.avatar.warnock { background-position: 22% 42%; }
.avatar.chizen { background-position: 58% 42%; }
.avatar.narayen { background-position: 90% 38%; }
.who h3 { font-size: 18px; }
.who p { font-size: 13px; color: var(--muted); }
.marks { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.mark {
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; background: var(--wash);
}
.mark b { display: block; color: var(--red); font-size: 13px; letter-spacing: .04em; }
.mark span { font-weight: 700; font-size: 15px; }

/* Donut + logos */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.donut-wrap { display: grid; place-items: center; position: relative; }
.donut {
  width: 240px; height: 240px; border-radius: 50%;
  background: conic-gradient(
    #eb1000 0 58.2%,
    #5b9bd5 58.2% 70.7%,
    #70ad47 70.7% 82.1%,
    #ed7d31 82.1% 90.1%,
    #ffc000 90.1% 97%,
    #2f5597 97% 100%
  );
  -webkit-mask: radial-gradient(circle 78px, transparent 77px, #000 78px);
          mask: radial-gradient(circle 78px, transparent 77px, #000 78px);
}
.donut-label {
  position: absolute; text-align: center;
}
.donut-label b { display: block; font-size: 34px; letter-spacing: -.03em; }
.donut-label span { font-size: 13px; color: var(--muted); }
.legend { display: grid; gap: 8px; margin-top: 18px; font-size: 13px; font-weight: 600; }
.legend i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-right: 8px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  font-size: 13px; font-weight: 700; padding: 8px 12px; border-radius: 8px;
  background: var(--wash); border: 1px solid var(--line);
}

/* Investors */
.inv { display: grid; gap: 14px; }
.inv .row { display: grid; grid-template-columns: 180px 1fr 56px; gap: 14px; align-items: center; font-weight: 700; }
.bar { height: 8px; background: #eee; border-radius: 99px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--red); border-radius: 99px; }
.inv .pct { text-align: right; color: var(--red); }

/* Offering tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tabs button {
  padding: 10px 16px; border-radius: 8px; font-weight: 700; font-size: 14px;
  border: 1px solid var(--line); background: #fff; color: var(--muted);
}
.tabs button.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.panel { display: none; }
.panel.on { display: block; }
svg path.panel { display: none; }
svg path.panel.on { display: inline; }
.app-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.app {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px;
}
.app .ic {
  width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 14px; margin-bottom: 10px;
}
.app h4 { font-size: 14px; margin-bottom: 4px; }
.app p { font-size: 12px; color: var(--muted); }
.stack-vis { display: grid; gap: 8px; }
.layer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-radius: 10px; color: #fff; font-weight: 700; font-size: 14px;
}

/* Finance years */
.years { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 24px; }
.years button {
  min-width: 72px; padding: 10px 12px; border-radius: 8px;
  border: 1px solid var(--line); background: #fff; font-weight: 700;
}
.years button.on { background: var(--red); color: #fff; border-color: var(--red); }
.big-num { font-size: clamp(48px, 8vw, 84px); font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.big-num small { font-size: .35em; color: var(--muted); font-weight: 700; }
.kpi { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 28px; }
.kpi div {
  border: 1px solid var(--line); border-radius: 12px; padding: 16px; background: #fff;
}
.kpi b { display: block; font-size: 22px; letter-spacing: -.02em; }
.kpi span { font-size: 12px; color: var(--muted); font-weight: 600; }

/* Stories */
.story-btns { display: grid; gap: 8px; }
.story-btns button {
  text-align: left; padding: 16px 18px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
}
.story-btns button.on { border-color: var(--red); background: var(--red-soft); }
.story-btns strong { display: block; margin-bottom: 4px; }
.story-btns span { font-size: 14px; color: var(--muted); }
.chart {
  display: flex; align-items: flex-end; gap: 10px; height: 180px;
  padding: 16px 8px 0; border-bottom: 1px solid var(--line);
}
.chart .col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; opacity: .38; transition: opacity .2s; }
.chart .col.on { opacity: 1; }
.chart .col b { font-size: 11px; color: var(--muted); }
.bars { width: 100%; display: flex; gap: 3px; align-items: flex-end; height: 140px; }
.bars i { flex: 1; border-radius: 3px 3px 0 0; }
.bars .a { background: #9ad0f5; }
.bars .l { background: #5b9bd5; }
.bars .e { background: #2f4a6e; }
.bars .hi { outline: 2px solid var(--red); }

/* P/L line */
.pl-svg { width: 100%; height: 220px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.dots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.dots button {
  font-size: 13px; font-weight: 700; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
}
.dots button.on { background: var(--red); color: #fff; border-color: var(--red); }
.cost { display: grid; gap: 10px; }
.cost .r { display: grid; grid-template-columns: 140px 1fr 40px; gap: 10px; align-items: center; font-size: 13px; font-weight: 700; }

/* Eras visual */
.era-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.era {
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #111;
  cursor: pointer; text-align: left; color: #fff; transition: transform .2s;
}
.era:hover, .era.on { transform: translateY(-4px); }
.era.on { outline: 2px solid var(--red); }
.era img { width: 100%; height: 220px; object-fit: cover; }
.era figcaption { padding: 14px 16px; }
.era figcaption b { display: block; font-size: 13px; color: #ff8a80; letter-spacing: .08em; text-transform: uppercase; }
.era figcaption span { font-size: 15px; font-weight: 700; }

/* Race */
.race { display: grid; gap: 10px; margin: 24px 0 32px; }
.lane { display: grid; grid-template-columns: 90px 1fr 110px; gap: 12px; align-items: center; font-weight: 700; font-size: 14px; }
.track { height: 10px; background: #333; border-radius: 99px; overflow: hidden; }
.track i { display: block; height: 100%; background: #666; width: 62%; }
.lane.adobe .track i { width: 100%; background: var(--red); }
.trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.trio div { background: #2a2a2a; border-radius: 12px; padding: 20px; }
.trio b { display: block; font-size: 32px; color: #fff; }
.trio span { color: #aaa; font-size: 13px; }

/* Laws / news */
.nums { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-bottom: 24px; }
.nums div { border: 1px solid var(--line); border-radius: 12px; padding: 16px; background: #fff; }
.nums b { display: block; font-size: 26px; color: var(--red); letter-spacing: -.03em; }
.nums span { font-size: 12px; color: var(--muted); font-weight: 600; }
.news { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.clip {
  background: #fffdf8; border: 1px solid #eadfce; border-radius: 4px;
  padding: 20px 22px; transform: rotate(-.6deg);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.clip:nth-child(2) { transform: rotate(.8deg); }
.clip .src { font-size: 11px; font-weight: 800; letter-spacing: .08em; color: var(--red); text-transform: uppercase; }
.clip h3 { font-size: 18px; margin: 8px 0 6px; letter-spacing: -.02em; }
.clip p { font-size: 13px; color: var(--muted); }

/* Rival bars */
.rbars { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: end; height: 220px; }
.rbar { display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.rbar .stack { display: flex; flex-direction: column; justify-content: flex-end; height: 100%; border-radius: 8px 8px 0 0; overflow: hidden; }
.rbar i { display: block; width: 100%; }
.rbar .name { text-align: center; margin-top: 8px; font-weight: 800; }
.key { display: flex; gap: 16px; font-size: 12px; font-weight: 700; color: var(--muted); margin-top: 12px; }
.key i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-right: 6px; }

/* Inside */
.inside {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  background: #fff url("assets/crops/office.jpg") center 40% / cover no-repeat;
  min-height: 420px; border-radius: 16px; padding: 20px; border: 1px solid var(--line);
}
.tcard {
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 18px; text-align: left; border: 1px solid var(--line);
  transition: transform .15s;
}
.tcard:hover { transform: translateY(-3px); border-color: var(--red); }
.tcard b { display: block; color: var(--red); margin-bottom: 6px; }
.tcard span { font-size: 14px; color: var(--muted); }

/* Stock */
.stock { position: relative; }
.callouts { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 12px; }
.callouts button {
  padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line);
  background: #fff; font-size: 12px; font-weight: 700; text-align: left;
}
.callouts button.on { background: var(--red-soft); border-color: var(--red); }
.callouts em { display: block; font-style: normal; color: var(--red); font-size: 11px; }

/* Forecast paths */
.paths { display: flex; gap: 8px; margin-bottom: 16px; }
.paths button { padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line); font-weight: 700; background: #fff; }
.paths button.on { color: #fff; }
.paths .low.on { background: var(--red); border-color: var(--red); }
.paths .avg.on { background: #2c2c2c; border-color: #2c2c2c; }
.paths .high.on { background: #2e7d32; border-color: #2e7d32; }
.ftable { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 16px; }
.ftable div { border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.ftable b { display: block; font-size: 22px; }
.up { color: #2e7d32; } .dn { color: var(--red); }

/* Strategy cards */
.bets { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.bet {
  border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: #fff;
  text-align: left; min-height: 220px; display: flex; flex-direction: column; justify-content: space-between;
}
.bet.on, .bet:hover { border-color: var(--red); }
.bet .tag { font-size: 12px; font-weight: 800; color: var(--red); letter-spacing: .08em; text-transform: uppercase; }
.bet h3 { font-size: 22px; letter-spacing: -.02em; margin: 8px 0; }
.bet p { color: var(--muted); font-size: 15px; }

/* Prototype */
.proto { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: center; }
.steps { display: grid; gap: 8px; }
.steps button {
  display: flex; gap: 12px; align-items: center; text-align: left;
  padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: #fff; font-weight: 700;
}
.steps button.on { border-color: var(--red); background: var(--red-soft); }
.steps .n { width: 24px; height: 24px; border-radius: 50%; background: var(--wash); display: grid; place-items: center; font-size: 12px; }
.steps button.on .n { background: var(--red); color: #fff; }
.phone {
  width: 300px; height: 620px; margin: 0 auto; background: #111; border-radius: 40px;
  padding: 10px; box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
.screen { height: 100%; background: #fff; border-radius: 32px; overflow: hidden; position: relative; }
.island { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 96px; height: 26px; background: #111; border-radius: 16px; z-index: 3; }
.status { height: 46px; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 22px 6px; font-size: 12px; font-weight: 700; }
.app { position: absolute; inset: 46px 0 58px; overflow: hidden; }
.view { position: absolute; inset: 0; padding: 8px 16px; opacity: 0; pointer-events: none; transform: translateX(12px); transition: .25s; overflow: auto; }
.view.show { opacity: 1; pointer-events: auto; transform: none; }
.tabbar { position: absolute; bottom: 0; left: 0; right: 0; height: 58px; border-top: 1px solid var(--line); display: flex; justify-content: space-around; align-items: center; font-size: 10px; font-weight: 700; color: #aaa; }
.tabbar .on { color: var(--red); }
.card { border: 1px solid var(--line); border-radius: 12px; padding: 12px; margin-bottom: 10px; }
.card h4 { font-size: 14px; }
.cta-mini { background: var(--red); color: #fff; text-align: center; border-radius: 10px; padding: 9px; font-weight: 800; font-size: 12px; margin-top: 8px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sw { height: 54px; border-radius: 8px; }
.search { background: var(--wash); border-radius: 10px; padding: 8px 10px; font-size: 12px; color: var(--muted); margin: 8px 0 12px; }

/* Road */
.road { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.phase { border: 1px solid var(--line); border-radius: 16px; padding: 22px; background: #fff; }
.phase .b { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--red); padding: 5px 10px; border-radius: 99px; margin-bottom: 10px; }
.phase.w .b { background: #2c2c2c; }
.phase.r .b { background: #5b2d8e; }
.phase ul { list-style: none; display: grid; gap: 8px; margin-top: 10px; font-size: 14px; }
.phase li::before { content: "→ "; color: var(--red); font-weight: 800; }

/* Rec */
.rec { display: grid; grid-template-columns: .8fr 1.2fr; gap: 16px; }
.price-hero {
  background: var(--red); color: #fff; border-radius: 16px; padding: 32px; text-align: center;
}
.price-hero .x { font-size: 64px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.q { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.q blockquote { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.q cite { font-style: normal; color: var(--muted); font-size: 13px; font-weight: 700; }
.q hr { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }

.cta-band {
  background: var(--red); color: #fff; border-radius: 20px; padding: 48px 32px; text-align: center;
}
.cta-band h2 { color: #fff; max-width: none; margin: 0 auto 10px; }
.cta-band .btn { background: #fff; color: var(--red); }

/* Footer */
footer { background: var(--dark); color: #bbb; padding: 48px 0 28px; margin-top: 40px; }
.fg { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; margin-bottom: 24px; }
footer h4 { color: #fff; margin-bottom: 10px; }
footer a:hover { color: #fff; }
.team { display: flex; flex-wrap: wrap; gap: 8px; }
.team span { border: 1px solid #444; padding: 5px 10px; border-radius: 99px; font-size: 12px; }
.team .me { background: var(--red); color: #fff; border-color: var(--red); }
.copy { border-top: 1px solid #333; padding-top: 16px; font-size: 12px; text-align: center; }

@media (max-width: 900px) {
  .links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 12px; border-bottom: 1px solid var(--line); }
  .links.open { display: flex; }
  .burger { display: block; }
  .stats-grid, .kpi, .app-grid, .nums, .trio, .ftable { grid-template-columns: 1fr 1fr; }
  .split, .tl-stage, .news, .era-grid, .bets, .proto, .road, .rec, .fg, .callouts, .rbars, .inv .row { grid-template-columns: 1fr; }
  .tl-stage, .proto { display: grid; }
  .inside { grid-template-columns: 1fr; background-size: cover; }
  .inv .row { grid-template-columns: 1fr 50px; }
  .inv .row span:first-child { grid-column: 1 / -1; }
  .hero { min-height: auto; padding-top: 48px; }
  .app-grid[style] { grid-template-columns: 1fr 1fr !important; }
}
