:root {
  --ink: #081012;
  --ink-2: #102023;
  --paper: #f6f7f1;
  --paper-2: #e9efe8;
  --white: #ffffff;
  --muted: #637176;
  --line: rgba(8, 16, 18, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --cyan: #22c6e8;
  --amber: #f2b44b;
  --red: #df5c4f;
  --green: #42b980;
  --shadow: 0 24px 80px rgba(8, 16, 18, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 16px 44px;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 16, 18, 0.7);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-cta,
.button,
.footer-copy {
  display: inline-flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(34, 198, 232, 0.72);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(34, 198, 232, 0.12);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links {
  justify-self: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  justify-self: end;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(242, 180, 75, 0.72);
  border-radius: 999px;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 16, 18, 0.98) 0%, rgba(8, 16, 18, 0.86) 34%, rgba(8, 16, 18, 0.2) 72%),
    linear-gradient(0deg, rgba(8, 16, 18, 0.92) 0%, rgba(8, 16, 18, 0.08) 46%);
}

.hero-layout {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 380px);
  gap: 34px;
  align-items: end;
  padding: 118px 54px 54px;
}

.hero-content {
  max-width: 760px;
}

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

.eyebrow.dark {
  color: #15798c;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 19px;
  font-size: 6.4rem;
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 17px;
  font-size: 3.55rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.24rem;
  line-height: 1.55;
}

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

.button,
.footer-copy {
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  color: #10100d;
  background: var(--amber);
  border-color: rgba(255, 255, 255, 0.18);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.copy-icon,
.mail-icon,
.check-icon {
  position: relative;
  flex: 0 0 auto;
}

.copy-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.copy-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -7px;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
  opacity: 0.66;
}

.mail-icon {
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.mail-icon::before {
  left: 1px;
  transform: rotate(34deg);
}

.mail-icon::after {
  right: 1px;
  transform: rotate(-34deg);
}

.hero-panel {
  align-self: end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 16, 18, 0.74);
  box-shadow: var(--shadow);
}

.panel-label,
.detail-kicker {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.hero-panel dt {
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.hero-panel dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.4;
}

.ticker-band {
  display: flex;
  gap: 12px;
  align-items: center;
  overflow-x: auto;
  min-height: 74px;
  padding: 15px 44px;
  color: var(--ink);
  background: var(--amber);
}

.ticker-band span {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(8, 16, 18, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: 104px 54px;
}

.section-intro {
  width: min(1140px, 100%);
  margin: 0 auto 34px;
}

.section-intro.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 36px;
  align-items: end;
}

.section-intro p,
.deal-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.thesis-section {
  background: var(--paper);
}

.thesis-grid {
  width: min(1140px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.thesis-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.thesis-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
}

.accent-cyan::before {
  background: var(--cyan);
}

.accent-amber::before {
  background: var(--amber);
}

.accent-red::before {
  background: var(--red);
}

.card-index {
  display: inline-flex;
  margin-bottom: 58px;
  color: rgba(8, 16, 18, 0.36);
  font-size: 0.88rem;
  font-weight: 950;
}

.thesis-card p {
  color: var(--muted);
  line-height: 1.62;
}

.paths-section {
  background: var(--paper-2);
}

.path-shell {
  width: min(1140px, 100%);
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.path-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.path-tabs button {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-weight: 950;
  text-align: left;
  padding: 0 16px;
}

.path-tabs button.active {
  color: var(--white);
  border-color: rgba(34, 198, 232, 0.58);
  background: var(--ink);
}

.path-detail {
  min-height: 320px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 198, 232, 0.1), rgba(242, 180, 75, 0.12)),
    var(--white);
  box-shadow: 0 22px 70px rgba(8, 16, 18, 0.1);
}

.path-detail .detail-kicker {
  color: #15798c;
}

.path-detail h3 {
  max-width: 760px;
  font-size: 2.25rem;
}

.path-detail p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.path-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.path-detail li {
  padding: 9px 12px;
  border: 1px solid rgba(8, 16, 18, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 850;
}

.signals-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 16, 18, 0.98), rgba(16, 32, 35, 0.96)),
    var(--ink);
}

.signal-copy {
  justify-self: end;
  width: min(600px, 100%);
}

.signal-copy h2 {
  margin-bottom: 0;
}

.signal-list {
  display: grid;
  gap: 10px;
  width: min(620px, 100%);
}

.signal-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
}

.check-icon {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(66, 185, 128, 0.76);
  border-radius: 50%;
  background: rgba(66, 185, 128, 0.14);
}

.check-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 8px;
  height: 12px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

.deal-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: center;
  padding: 96px 54px;
  background: var(--paper);
}

.deal-copy {
  justify-self: end;
  width: min(640px, 100%);
}

.memo-form {
  width: min(560px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(8, 16, 18, 0.11);
}

.memo-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.input-row input {
  min-width: 0;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcf8;
  outline: none;
}

.input-row input:focus {
  border-color: var(--cyan);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.site-footer {
  padding: 54px 54px 28px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 560px) auto;
  gap: 26px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-logo {
  color: var(--white);
}

.footer-brand p {
  margin: 0;
  max-width: 560px;
  line-height: 1.65;
}

.footer-copy {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 38px 0;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding: 108px 28px 38px;
  }

  .hero-panel {
    max-width: 560px;
  }

  h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: 3rem;
  }

  .section,
  .deal-section,
  .signals-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .section-intro.split,
  .signals-section,
  .deal-section {
    grid-template-columns: 1fr;
  }

  .signal-copy,
  .deal-copy {
    justify-self: start;
  }

  .thesis-grid,
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-image {
    object-position: 70% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 16, 18, 0.98) 0%, rgba(8, 16, 18, 0.88) 58%, rgba(8, 16, 18, 0.5) 100%),
      linear-gradient(0deg, rgba(8, 16, 18, 0.94) 0%, rgba(8, 16, 18, 0.08) 46%);
  }

  .hero-layout {
    padding: 92px 16px 28px;
  }

  h1 {
    font-size: 2.9rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

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

  .hero-panel dl {
    grid-template-columns: 1fr;
  }

  .ticker-band,
  .section,
  .deal-section,
  .signals-section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .thesis-grid,
  .path-shell,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .path-detail {
    padding: 22px;
  }

  .path-detail h3 {
    font-size: 1.7rem;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
