@font-face {
  font-family: "Future Display";
  src: url("/futuro-e-tecnologia/fonts/CormorantGaramond-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Future Text";
  src: url("/futuro-e-tecnologia/fonts/EBGaramond-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root { color-scheme: dark; }
html { scroll-behavior: smooth; background: #01050b; }
body { margin: 0; background: #01050b; }
img { display: block; max-width: 100%; }
.skipLink {
  position: fixed;
  z-index: 30;
  top: 1rem;
  left: 1rem;
  translate: 0 -180%;
  padding: .75rem 1rem;
  color: #04101a;
  background: #eef8ff;
  font: 800 .72rem/1 ui-sans-serif, system-ui, sans-serif;
  text-decoration: none;
}
.skipLink:focus { translate: 0; }
.siteHeader {
  position: relative;
  z-index: 12;
  min-height: 80px;
  padding: 0 clamp(1.1rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgb(133 204 255 / 17%);
  color: #eef8ff;
  background: #01050b;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.siteBrand { color: #eef8ff; font-size: 1.15rem; font-weight: 850; letter-spacing: .13em; text-decoration: none; }
.siteBrand span { color: #78dfff; }
.siteHeader nav { display: flex; align-items: center; gap: clamp(.8rem, 2.6vw, 2.4rem); }
.siteHeader nav a { color: #9cb2c4; font-size: .68rem; font-weight: 750; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.siteHeader nav a:hover,
.siteHeader nav a:focus-visible { color: #eef8ff; }

.shell {
  --void: #01050b;
  --panel: rgb(6 18 33 / 82%);
  --ink: #eef8ff;
  --muted: #b8cad9;
  --quiet: #7890a5;
  --cyan: #78dfff;
  --violet: #b394ff;
  --gold: #f0cf82;
  --gold-soft: #fff0bd;
  --line: rgb(133 204 255 / 17%);
  --line-strong: rgb(159 218 255 / 35%);
  min-width: 0;
  min-height: 100vh;
  overflow: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 13% 20%, rgb(57 112 255 / 11%), transparent 34rem),
    radial-gradient(circle at 87% 58%, rgb(159 94 255 / 7%), transparent 36rem),
    var(--void);
  font-family: "Future Text", Georgia, serif;
}

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

.shell a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 5px; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(940px, 100svh);
  display: grid;
  align-items: center;
  padding: clamp(8rem, 16vh, 12rem) clamp(1.25rem, 7vw, 8rem) 6rem;
  border-bottom: 1px solid var(--line);
}

.heroArt,
.heroShade,
.heroGrid { position: absolute; inset: 0; }

.heroArt { z-index: -4; width: 100%; height: 100%; object-fit: cover; object-position: center; }

.heroShade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgb(1 5 11 / 96%) 0%, rgb(1 6 13 / 83%) 36%, rgb(1 5 11 / 15%) 72%),
    linear-gradient(0deg, var(--void) 0%, transparent 34%, rgb(1 5 11 / 8%) 100%);
}

.heroGrid {
  z-index: -2;
  opacity: .23;
  background-image:
    linear-gradient(rgb(120 223 255 / 10%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(120 223 255 / 10%) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 59%);
}

.heroCopy { width: min(730px, 61vw); }

.heroCopy > p:first-child,
.sectionHeading > p:first-child,
.continue > div > p {
  margin: 0 0 1.1rem;
  color: var(--cyan);
  font: 760 .7rem/1.45 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .2em;
}

.hero h1,
.sectionHeading h2,
.portalCopy h3,
.continue h2 {
  margin: 0;
  font-family: "Future Display", Georgia, serif;
  font-weight: 400;
  text-wrap: balance;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(4.2rem, 9vw, 8.8rem);
  line-height: .82;
  letter-spacing: -.055em;
}

.hero h1 em { display: block; color: var(--gold); font-weight: 400; }

.lead {
  max-width: 660px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.16rem, 2vw, 1.56rem);
  line-height: 1.54;
}

.actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

.actions a,
.portalCopy > a {
  min-height: 48px;
  padding: .86rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: rgb(4 15 28 / 74%);
  font: 720 .71rem/1.2 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .075em;
  text-decoration: none;
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.actions a:first-child { color: #03131c; border-color: transparent; background: var(--cyan); }

.actions a:hover,
.portalCopy > a:hover { transform: translateY(-2px); border-color: var(--cyan); }

.heroLegend {
  max-width: 730px;
  margin: 2.45rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.heroLegend div { min-width: 0; padding: .9rem 1rem; background: rgb(1 8 18 / 80%); }
.heroLegend dt { color: var(--quiet); font: 700 .58rem/1.25 ui-sans-serif, system-ui, sans-serif; letter-spacing: .14em; }
.heroLegend dd { margin: .35rem 0 0; color: var(--gold-soft); font-size: .9rem; line-height: 1.25; }

.provenance {
  position: absolute;
  right: clamp(1.25rem, 4vw, 4rem);
  bottom: 1.4rem;
  max-width: 690px;
  margin: 0;
  color: rgb(220 238 248 / 68%);
  font: 650 .6rem/1.5 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .072em;
  text-align: right;
}

.chapterNav {
  position: sticky;
  top: 80px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  border-bottom: 1px solid var(--line);
  background: rgb(1 6 13 / 89%);
  backdrop-filter: blur(24px) saturate(125%);
}

.chapterNav::-webkit-scrollbar { display: none; }

.chapterNav a {
  min-height: 56px;
  padding: .8rem 1.15rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font: 700 .67rem/1.2 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  white-space: nowrap;
  scroll-snap-align: start;
  box-shadow: inset 0 -2px transparent;
  transition: color 160ms ease, background 160ms ease;
}

.chapterNav a:hover,
.chapterNav a:focus-visible { color: var(--ink); background: rgb(120 223 255 / 7%); box-shadow: inset 0 -2px var(--cyan); }
.chapterNav:not(:has(~ :target)) a:first-child,
.chapterNav:has(~ .featuredEditorials:target) a[href="#destaques"],
.chapterNav:has(~ .launchSpotlight:target) a[href="#aplicativos"],
.chapterNav:has(~ .paths:target) a[href="#caminhos"],
.chapterNav:has(~ .connection:target) a[href="#conexao"],
.chapterNav:has(~ .proof:target) a[href="#prova"],
.chapterNav:has(~ .continue:target) a[href="#continuar"] { color: var(--ink); box-shadow: inset 0 -2px var(--gold); }
.chapterNav span { color: var(--gold); }

.featuredEditorials {
  scroll-margin-top: 150px;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5.5rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 14%, rgb(120 223 255 / 10%), transparent 28rem),
    radial-gradient(circle at 88% 75%, rgb(179 148 255 / 9%), transparent 30rem),
    var(--void);
}

.featuredEditorials > .sectionHeading { margin-bottom: clamp(2.2rem, 4vw, 4rem); }
.featuredGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.7rem); }
.featuredCard {
  --featured-accent: 120 223 255;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgb(var(--featured-accent) / 28%);
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 5%, rgb(var(--featured-accent) / 11%), transparent 20rem),
    linear-gradient(145deg, rgb(7 22 38 / 98%), rgb(2 9 18 / 99%));
  box-shadow: 0 28px 75px rgb(0 0 0 / 30%), inset 0 1px rgb(255 255 255 / 7%);
}
.featuredCard[data-tone="ios"] { --featured-accent: 179 148 255; }
.featuredCard figure { position: relative; min-height: clamp(260px, 30vw, 430px); margin: 0; overflow: hidden; background: #020812; }
.featuredCard figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(2 9 18 / 92%), transparent 55%); }
.featuredCard img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 800ms ease; }
.featuredCard:hover img { transform: scale(1.025); }
.featuredCopy { padding: clamp(1.6rem, 3vw, 3rem); }
.featuredCopy > small { color: rgb(var(--featured-accent)); font: 800 .61rem/1.25 ui-sans-serif, system-ui, sans-serif; letter-spacing: .16em; }
.featuredCopy h3 { margin: .95rem 0 0; font: 400 clamp(2.7rem, 4.8vw, 5.1rem)/.9 "Future Display", Georgia, serif; letter-spacing: -.04em; }
.featuredCopy > p { margin: 1.15rem 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.58; }
.featuredCopy ul { margin: 1.3rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; }
.featuredCopy li { padding: .5rem .7rem; border: 1px solid rgb(var(--featured-accent) / 24%); border-radius: 999px; color: rgb(var(--featured-accent)); font: 700 .57rem/1.1 ui-sans-serif, system-ui, sans-serif; letter-spacing: .06em; }
.featuredCopy > a { min-height: 48px; margin-top: 1.6rem; padding: .82rem 1rem; display: inline-flex; align-items: center; gap: 1.3rem; border: 1px solid rgb(var(--featured-accent) / 40%); border-radius: 999px; color: var(--ink); background: rgb(var(--featured-accent) / 7%); font: 760 .65rem/1.2 ui-sans-serif, system-ui, sans-serif; letter-spacing: .07em; text-decoration: none; }
.featuredCopy > a:hover { border-color: rgb(var(--featured-accent)); transform: translateY(-2px); }

.launchSpotlight {
  position: relative;
  scroll-margin-top: 150px;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1.25rem, 5vw, 5.5rem) clamp(3rem, 5vw, 5.25rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 12%, rgb(120 223 255 / 10%), transparent 32rem),
    linear-gradient(180deg, rgb(4 15 27 / 96%), var(--void));
}

.launchSpotlight > .sectionHeading { margin-bottom: clamp(1.7rem, 3vw, 2.7rem); }

.quickActions {
  margin-bottom: clamp(.85rem, 1.7vw, 1.25rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.7rem, 1.4vw, 1rem);
}

.quickActions a {
  --quick-accent: 120 223 255;
  min-height: 84px;
  padding: 1rem clamp(1rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgb(var(--quick-accent) / 34%);
  border-radius: 22px;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgb(var(--quick-accent) / 15%), transparent 13rem),
    rgb(5 18 31 / 88%);
  font: 500 clamp(1.2rem, 1.75vw, 1.55rem)/1.1 "Future Display", Georgia, serif;
  text-decoration: none;
  box-shadow: inset 0 1px rgb(255 255 255 / 6%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quickActions a:nth-child(2) { --quick-accent: 179 148 255; }
.quickActions a:hover { transform: translateY(-2px); border-color: rgb(var(--quick-accent) / 72%); }
.quickActions small { margin-bottom: .35rem; display: block; color: rgb(var(--quick-accent)); font: 800 .55rem/1.2 ui-sans-serif, system-ui, sans-serif; letter-spacing: .13em; }
.quickActions i { color: rgb(var(--quick-accent)); font: 400 1.2rem/1 ui-sans-serif, system-ui, sans-serif; }

.accountBand {
  position: relative;
  isolation: isolate;
  margin-bottom: clamp(.95rem, 2vw, 1.45rem);
  padding: clamp(1.5rem, 3vw, 2.35rem) clamp(1.25rem, 3.4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3.5rem);
  overflow: hidden;
  border: 1px solid rgb(240 207 130 / 28%);
  border-radius: 26px;
  background:
    radial-gradient(circle at 85% 0%, rgb(240 207 130 / 13%), transparent 21rem),
    linear-gradient(120deg, rgb(10 29 44 / 96%), rgb(4 13 25 / 98%));
  box-shadow: inset 0 1px rgb(255 255 255 / 7%);
}

.accountBand::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  z-index: -1;
  background: linear-gradient(var(--gold), var(--cyan));
}

.accountBandCopy p { margin: 0 0 .55rem; color: var(--gold); font: 800 .58rem/1.2 ui-sans-serif, system-ui, sans-serif; letter-spacing: .16em; }
.accountBandCopy h3 { margin: 0; font: 400 clamp(2rem, 3.6vw, 3.6rem)/.95 "Future Display", Georgia, serif; letter-spacing: -.035em; }
.accountBandCopy span { max-width: 720px; margin-top: .8rem; display: block; color: var(--muted); font-size: clamp(.95rem, 1.2vw, 1.08rem); line-height: 1.5; }
.accountBandActions { min-width: 255px; display: grid; gap: .55rem; }
.accountBandActions a { min-height: 46px; padding: .75rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; border: 1px solid rgb(240 207 130 / 34%); border-radius: 999px; color: var(--ink); background: rgb(240 207 130 / 6%); font: 780 .64rem/1.2 ui-sans-serif, system-ui, sans-serif; letter-spacing: .07em; text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.accountBandActions a:first-child { color: #07131d; border-color: transparent; background: var(--gold); }
.accountBandActions a:hover { transform: translateY(-2px); border-color: var(--gold); }
.accountBandActions a:first-child:hover { background: var(--gold-soft); }

.launchCard {
  position: relative;
  isolation: isolate;
  min-height: min(700px, 72vw);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5.5rem);
  border: 1px solid rgb(120 223 255 / 28%);
  border-radius: 34px;
  background: #020812;
  box-shadow: 0 40px 110px rgb(0 0 0 / 42%), inset 0 1px rgb(255 255 255 / 8%);
}

.launchArt,
.launchShade { position: absolute; inset: 0; }
.launchArt { z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.2s cubic-bezier(.2, .75, .2, 1); }
.launchCard:hover .launchArt { transform: scale(1.018); }
.launchShade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(1 5 12 / 96%) 0%, rgb(1 7 15 / 80%) 42%, rgb(1 5 12 / 15%) 78%),
    linear-gradient(0deg, rgb(1 5 12 / 98%) 0%, transparent 67%);
}

.launchCopy { width: min(840px, 69%); }
.launchCopy > p:first-child { margin: 0 0 1.1rem; color: var(--gold); font: 780 .66rem/1.4 ui-sans-serif, system-ui, sans-serif; letter-spacing: .19em; }
.launchCopy h2 { margin: 0; font: 400 clamp(3rem, 6.2vw, 6.7rem)/.88 "Future Display", Georgia, serif; letter-spacing: -.05em; text-wrap: balance; }
.launchCopy h2 em { color: var(--cyan); font-weight: 400; }
.launchCopy > p:nth-of-type(2) { max-width: 730px; margin: 1.5rem 0 0; color: var(--muted); font-size: clamp(1.08rem, 1.65vw, 1.34rem); line-height: 1.58; }
.launchCopy ul { margin: 1.5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; }
.launchCopy li { padding: .55rem .78rem; border: 1px solid rgb(120 223 255 / 27%); border-radius: 999px; color: var(--cyan); background: rgb(6 22 38 / 62%); font: 720 .6rem/1.1 ui-sans-serif, system-ui, sans-serif; letter-spacing: .08em; backdrop-filter: blur(14px); }
.launchCopy li[data-state="pending"] { border-color: rgb(240 207 130 / 36%); color: var(--gold); background: rgb(64 47 13 / 35%); }
.launchLinks { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .7rem; }
.launchLinks a { min-height: 50px; padding: .9rem 1.2rem; display: inline-flex; align-items: center; justify-content: space-between; gap: 1.8rem; border: 1px solid rgb(120 223 255 / 35%); border-radius: 999px; color: var(--ink); background: rgb(4 15 28 / 76%); font: 780 .69rem/1.2 ui-sans-serif, system-ui, sans-serif; letter-spacing: .075em; text-decoration: none; backdrop-filter: blur(16px); transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.launchLinks a:first-child { color: #04121d; border-color: transparent; background: var(--gold); }
.launchLinks a:hover { transform: translateY(-2px); border-color: var(--cyan); }
.launchLinks a:first-child:hover { background: var(--gold-soft); }
.launchProvenance { position: absolute; right: 1.5rem; bottom: 1.35rem; max-width: 560px; margin: 0; color: rgb(225 239 249 / 54%); font: 650 .55rem/1.45 ui-sans-serif, system-ui, sans-serif; letter-spacing: .065em; text-align: right; }

.platformGrid {
  margin-top: clamp(1.2rem, 2.8vw, 2.4rem);
  scroll-margin-top: 145px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.7rem);
}

.platformCard {
  --platform-accent: 120 223 255;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 31%);
  overflow: hidden;
  border: 1px solid rgb(var(--platform-accent) / 26%);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgb(var(--platform-accent) / 14%), transparent 24rem),
    linear-gradient(145deg, rgb(7 22 38 / 98%), rgb(2 9 18 / 99%));
  box-shadow: 0 28px 75px rgb(0 0 0 / 30%), inset 0 1px rgb(255 255 255 / 7%);
}

.platformCard[data-platform="ios"] { --platform-accent: 179 148 255; }

.platformCopy {
  min-width: 0;
  padding: clamp(2rem, 3.4vw, 3.4rem) clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.platformStatus { color: rgb(var(--platform-accent)); font: 800 .62rem/1.3 ui-sans-serif, system-ui, sans-serif; letter-spacing: .15em; }
.platformStatus span { width: .48rem; height: .48rem; margin-right: .5rem; display: inline-block; border-radius: 50%; background: rgb(var(--platform-accent)); box-shadow: 0 0 18px rgb(var(--platform-accent) / 80%); }
.platformCopy h3 { margin: 1.1rem 0 0; font: 400 clamp(2.5rem, 4vw, 4.3rem)/.92 "Future Display", Georgia, serif; letter-spacing: -.043em; text-wrap: balance; }
.platformCopy > p { margin: 1.15rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.16rem); line-height: 1.55; }
.platformCopy ul { margin: 1.3rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .42rem; list-style: none; }
.platformCopy li { padding: .48rem .65rem; border: 1px solid rgb(var(--platform-accent) / 24%); border-radius: 999px; color: rgb(var(--platform-accent)); background: rgb(var(--platform-accent) / 6%); font: 700 .56rem/1.1 ui-sans-serif, system-ui, sans-serif; letter-spacing: .055em; }
.platformCopy li[data-state="pending"] { border-color: rgb(240 207 130 / 34%); color: var(--gold); background: rgb(240 207 130 / 7%); }

.platformActions { width: 100%; margin-top: 1.55rem; display: grid; gap: .55rem; }
.platformActions a { min-height: 46px; padding: .76rem .92rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid rgb(var(--platform-accent) / 33%); border-radius: 999px; color: var(--ink); background: rgb(var(--platform-accent) / 7%); font: 760 .62rem/1.2 ui-sans-serif, system-ui, sans-serif; letter-spacing: .055em; text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.platformActions a:first-child { color: #03131c; border-color: transparent; background: rgb(var(--platform-accent)); }
.platformActions a:hover { transform: translateY(-2px); border-color: rgb(var(--platform-accent)); }

.platformVisual {
  align-self: end;
  height: 90%;
  min-height: 430px;
  padding: 2.3rem 1.2rem 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.platformVisual img { width: min(100%, 190px); height: auto; max-height: 470px; object-fit: cover; object-position: top; border: 1px solid rgb(var(--platform-accent) / 28%); border-radius: 28px 28px 0 0; box-shadow: 0 24px 65px rgb(0 0 0 / 48%); }

.paths,
.connection,
.proof,
.continue {
  position: relative;
  scroll-margin-top: 150px;
  padding: clamp(5.5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 8rem);
}

.launchSpotlight + .paths { padding-top: clamp(3.75rem, 6vw, 6rem); }

.paths,
.connection,
.proof { border-bottom: 1px solid var(--line); }

.sectionHeading { max-width: 1040px; }
.sectionHeading h2,
.continue h2 { font-size: clamp(3.1rem, 6.7vw, 7rem); line-height: .9; letter-spacing: -.047em; }

.sectionHeading > p:last-child {
  max-width: 790px;
  margin: 1.55rem 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.75vw, 1.42rem);
  line-height: 1.58;
}

.portals { margin-top: clamp(3.5rem, 7vw, 7rem); display: grid; gap: clamp(1.2rem, 2.7vw, 2.6rem); }

.portal {
  --portal-accent: 120 223 255;
  position: relative;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(380px, .86fr);
  overflow: hidden;
  border: 1px solid rgb(var(--portal-accent) / 24%);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgb(var(--portal-accent) / 10%), transparent 25rem),
    linear-gradient(145deg, rgb(7 22 38 / 96%), rgb(2 9 18 / 98%));
  box-shadow: 0 34px 95px rgb(0 0 0 / 34%), inset 0 1px rgb(255 255 255 / 7%);
}

.portal[data-tone="craft"] { --portal-accent: 179 148 255; }
.portal[data-tone="presence"] { --portal-accent: 240 207 130; }
.portal:nth-child(even) { grid-template-columns: minmax(380px, .86fr) minmax(0, 1.14fr); }
.portal:nth-child(even) .portalArt { order: 2; }

.portalArt {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-right: 1px solid rgb(var(--portal-accent) / 20%);
  background: #020812;
}

.portal:nth-child(even) .portalArt { border-right: 0; border-left: 1px solid rgb(var(--portal-accent) / 20%); }

.portalArt::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgb(1 6 13 / 88%) 0%, transparent 36%),
    linear-gradient(90deg, transparent 65%, rgb(2 8 16 / 62%) 100%);
  pointer-events: none;
}

.portal:nth-child(even) .portalArt::after {
  background:
    linear-gradient(0deg, rgb(1 6 13 / 88%) 0%, transparent 36%),
    linear-gradient(270deg, transparent 65%, rgb(2 8 16 / 62%) 100%);
}

.portalArt img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms cubic-bezier(.2, .75, .2, 1); }
.portal:hover .portalArt img { transform: scale(1.025); }

.portalNumber {
  position: absolute;
  z-index: 2;
  top: 1.5rem;
  left: 1.6rem;
  min-width: 50px;
  min-height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(var(--portal-accent) / 42%);
  border-radius: 50%;
  color: rgb(var(--portal-accent));
  background: rgb(2 10 19 / 58%);
  font: 760 .68rem/1 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .08em;
  backdrop-filter: blur(14px);
}

.portalArt > p {
  position: absolute;
  z-index: 2;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.35rem;
  margin: 0;
  color: rgb(222 239 249 / 72%);
  font: 650 .59rem/1.55 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .07em;
}

.portalCopy {
  min-width: 0;
  padding: clamp(2.4rem, 5vw, 5.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.portalLabel { display: grid; gap: .45rem; }
.portalLabel > span { color: rgb(var(--portal-accent)); font: 800 .68rem/1 ui-sans-serif, system-ui, sans-serif; letter-spacing: .2em; }
.portalLabel > small { color: var(--quiet); font: 700 .6rem/1.4 ui-sans-serif, system-ui, sans-serif; letter-spacing: .13em; }

.portalCopy h3 { margin-top: 1.45rem; font-size: clamp(3rem, 5.3vw, 5.9rem); line-height: .9; letter-spacing: -.045em; }
.portalCopy > p { margin: 1.45rem 0 0; color: var(--muted); font-size: clamp(1.08rem, 1.45vw, 1.3rem); line-height: 1.58; }

.portalCopy ul {
  width: 100%;
  margin: 1.7rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
}

.portalCopy li {
  padding: .55rem .75rem;
  border: 1px solid rgb(var(--portal-accent) / 23%);
  border-radius: 999px;
  color: rgb(var(--portal-accent));
  background: rgb(var(--portal-accent) / 6%);
  font: 700 .61rem/1.1 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .06em;
}

.portalCopy > a { margin-top: 2rem; border-color: rgb(var(--portal-accent) / 38%); }

.connection {
  background:
    linear-gradient(var(--line), var(--line)) center / 1px 100% no-repeat,
    radial-gradient(circle at 50% 35%, rgb(78 143 255 / 9%), transparent 34rem);
}

.connectionRail {
  position: relative;
  margin: clamp(3.5rem, 7vw, 7rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.connectionRail li {
  min-height: 340px;
  padding: clamp(2rem, 4vw, 4.4rem);
  background:
    radial-gradient(circle at 92% 8%, rgb(120 223 255 / 7%), transparent 17rem),
    rgb(2 10 20 / 96%);
}

.connectionRail li > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  font: 760 .65rem/1 ui-sans-serif, system-ui, sans-serif;
}

.connectionRail small { display: block; margin-top: 2.4rem; color: var(--cyan); font: 780 .64rem/1.2 ui-sans-serif, system-ui, sans-serif; letter-spacing: .19em; }
.connectionRail h3 { margin: 1rem 0 0; font: 400 clamp(1.9rem, 3vw, 3rem)/1.02 "Future Display", Georgia, serif; letter-spacing: -.03em; }
.connectionRail p { margin: 1.2rem 0 0; color: var(--muted); font-size: 1.04rem; line-height: 1.58; }

.distinction {
  margin-top: clamp(2rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr);
  border: 1px solid rgb(240 207 130 / 32%);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgb(240 207 130 / 11%), transparent 21rem),
    linear-gradient(145deg, rgb(12 22 34 / 97%), rgb(3 10 19 / 98%));
}

.distinction > div { padding: clamp(2rem, 4vw, 4.2rem); }
.distinction > div:first-child { display: grid; align-content: center; justify-items: start; border-right: 1px solid rgb(240 207 130 / 21%); }
.distinction > div:first-child > span { color: var(--gold); font: 400 clamp(4.8rem, 9vw, 9rem)/.65 "Future Display", Georgia, serif; }
.distinction > div:first-child > p { margin: 1.6rem 0 0; color: var(--gold); font: 760 .65rem/1.3 ui-sans-serif, system-ui, sans-serif; letter-spacing: .18em; }
.distinction h3 { margin: 0; font: 400 clamp(2.3rem, 4vw, 4.5rem)/.98 "Future Display", Georgia, serif; letter-spacing: -.035em; }
.distinction > div:last-child > p { margin: 1.4rem 0 0; color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.62; }

.proof {
  background:
    radial-gradient(circle at 84% 14%, rgb(179 148 255 / 9%), transparent 30rem),
    linear-gradient(180deg, rgb(1 6 13 / 42%), transparent);
}

.proofGrid {
  margin-top: clamp(3.5rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proofGrid article {
  min-height: 300px;
  padding: clamp(2rem, 4vw, 4.2rem);
  background:
    radial-gradient(circle at 96% 0, rgb(120 223 255 / 7%), transparent 20rem),
    rgb(2 10 20 / 97%);
}

.proofGrid article > div { display: flex; align-items: center; gap: .85rem; }
.proofGrid article > div > span { color: var(--gold); font: 760 .65rem/1 ui-sans-serif, system-ui, sans-serif; }
.proofGrid article > div > small { color: var(--cyan); font: 760 .63rem/1.2 ui-sans-serif, system-ui, sans-serif; letter-spacing: .16em; }
.proofGrid h3 { margin: 1.7rem 0 0; font: 400 clamp(2rem, 3.4vw, 3.6rem)/1 "Future Display", Georgia, serif; letter-spacing: -.032em; }
.proofGrid p { margin: 1.25rem 0 0; color: var(--muted); font-size: 1.06rem; line-height: 1.6; }

.continue {
  min-height: 820px;
  display: grid;
  align-content: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  gap: clamp(3rem, 8vw, 9rem);
  background:
    radial-gradient(circle at 12% 50%, rgb(78 143 255 / 11%), transparent 36rem),
    radial-gradient(circle at 91% 50%, rgb(240 207 130 / 8%), transparent 30rem),
    var(--void);
}

.continue nav { display: grid; align-content: center; border-top: 1px solid var(--line); }

.continue nav a {
  position: relative;
  min-height: 118px;
  padding: 1.5rem 3.2rem 1.5rem 0;
  display: grid;
  align-content: center;
  gap: .35rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: padding-left 180ms ease, background 180ms ease;
}

.continue nav a:hover { padding-left: 1rem; background: linear-gradient(90deg, rgb(120 223 255 / 7%), transparent); }
.continue nav span { color: var(--cyan); font: 740 .62rem/1.2 ui-sans-serif, system-ui, sans-serif; letter-spacing: .15em; }
.continue nav strong { font: 500 clamp(1.45rem, 2.4vw, 2.35rem)/1.1 "Future Display", Georgia, serif; }
.continue nav i { position: absolute; right: .25rem; top: 50%; translate: 0 -50%; color: var(--gold); font-style: normal; font-size: 1.4rem; }

@media (max-width: 1100px) {
  .portal,
  .portal:nth-child(even) { grid-template-columns: 1fr; }
  .portalArt,
  .portal:nth-child(even) .portalArt {
    order: 0;
    min-height: min(62vw, 570px);
    border: 0;
    border-bottom: 1px solid rgb(var(--portal-accent) / 20%);
  }
  .portalArt::after,
  .portal:nth-child(even) .portalArt::after { background: linear-gradient(0deg, rgb(1 6 13 / 87%) 0%, transparent 45%); }
  .connectionRail { grid-template-columns: 1fr; }
  .connectionRail li { min-height: 0; }
  .continue { grid-template-columns: 1fr; min-height: 0; }
}

@media (max-width: 820px) {
  .hero { min-height: 820px; align-items: end; padding-top: 8rem; }
  .heroCopy { width: 100%; padding-bottom: 5rem; }
  .heroArt { object-position: 60% center; }
  .heroShade {
    background:
      linear-gradient(0deg, var(--void) 3%, rgb(1 5 11 / 80%) 57%, rgb(1 5 11 / 18%) 100%),
      linear-gradient(90deg, rgb(1 5 11 / 45%), transparent);
  }
  .heroGrid { display: none; }
  .heroLegend { max-width: none; }
  .provenance { left: 1.25rem; right: 1.25rem; text-align: left; }
  .chapterNav { grid-template-columns: repeat(6, minmax(145px, 1fr)); }
  .featuredEditorials { padding-inline: 1.25rem; }
  .featuredGrid { grid-template-columns: 1fr; }
  .launchSpotlight { padding-inline: 1.25rem; }
  .launchCard { min-height: 680px; padding-bottom: 5.5rem; }
  .launchArt { object-position: 66% center; }
  .launchShade { background: linear-gradient(0deg, rgb(1 5 12 / 98%) 0%, rgb(1 6 14 / 78%) 62%, rgb(1 5 12 / 18%) 100%); }
  .launchCopy { width: 100%; }
  .launchProvenance { left: clamp(2rem, 5vw, 3rem); right: clamp(2rem, 5vw, 3rem); text-align: left; }
  .platformGrid { grid-template-columns: 1fr; }
  .portal { border-radius: 22px; }
  .portalCopy { padding: 2.1rem 1.35rem 2.5rem; }
  .portalArt,
  .portal:nth-child(even) .portalArt { min-height: 68vw; }
  .distinction { grid-template-columns: 1fr; }
  .distinction > div:first-child { border-right: 0; border-bottom: 1px solid rgb(240 207 130 / 21%); }
  .proofGrid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .chapterNav { top: 58px; }
}

@media (max-width: 560px) {
  .siteHeader { min-height: 58px; padding-inline: 1rem; }
  .siteHeader nav a:not(:last-child) { display: none; }
  .hero { min-height: 780px; padding-inline: 1.1rem; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 5.4rem); }
  .lead { font-size: 1.08rem; }
  .actions { display: grid; }
  .actions a { width: 100%; }
  .heroLegend { grid-template-columns: 1fr; }
  .heroLegend div { padding: .72rem .85rem; }
  .provenance { left: 1.1rem; right: 1.1rem; font-size: .55rem; }
  .chapterNav { grid-template-columns: repeat(6, minmax(132px, 1fr)); }
  .chapterNav a { min-height: 52px; padding: .7rem .85rem; font-size: .61rem; }
  .launchSpotlight { padding: 1.1rem 1.1rem 3rem; }
  .featuredEditorials { padding: 3.5rem 1.1rem; }
  .featuredCard { border-radius: 22px; }
  .featuredCard figure { min-height: 72vw; }
  .featuredCopy { padding: 1.5rem 1.15rem 1.8rem; }
  .featuredCopy h3 { font-size: clamp(2.5rem, 12vw, 3.8rem); }
  .quickActions { grid-template-columns: 1fr; }
  .quickActions a { min-height: 72px; border-radius: 18px; }
  .accountBand { grid-template-columns: 1fr; padding: 1.45rem 1.2rem; border-radius: 20px; }
  .accountBandCopy h3 { font-size: clamp(2.2rem, 10.5vw, 3.2rem); }
  .accountBandActions { width: 100%; min-width: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .launchCard { min-height: 630px; padding: 1.35rem 1.15rem 5.25rem; border-radius: 22px; }
  .launchCopy h2 { font-size: clamp(2.35rem, 10.2vw, 3.35rem); }
  .launchCopy > p:nth-of-type(2) { margin-top: 1.1rem; font-size: .97rem; line-height: 1.48; }
  .launchCopy ul { gap: .4rem; }
  .launchLinks { margin-top: 1.25rem; display: grid; }
  .launchLinks a { width: 100%; }
  .launchProvenance { left: 1.15rem; right: 1.15rem; bottom: 1.2rem; }
  .platformCard { min-height: 0; grid-template-columns: 1fr; border-radius: 22px; }
  .platformCopy { padding: 1.8rem 1.2rem 1.45rem; }
  .platformCopy h3 { font-size: clamp(2.25rem, 10.5vw, 3.2rem); }
  .platformStatus { max-width: 100%; line-height: 1.5; }
  .platformVisual { width: 100%; height: 310px; min-height: 310px; padding: 0 1rem; align-items: flex-start; }
  .platformVisual img { width: min(53vw, 180px); max-height: none; border-radius: 24px 24px 0 0; }
  .paths,
  .connection,
  .proof,
  .continue { padding-inline: 1.1rem; }
  .sectionHeading h2,
  .continue h2 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .portalArt,
  .portal:nth-child(even) .portalArt { min-height: 88vw; }
  .portalArt > p { left: 1rem; right: 1rem; bottom: 1rem; }
  .portalNumber { top: 1rem; left: 1rem; }
  .portalCopy h3 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .connectionRail li,
  .proofGrid article,
  .distinction > div { padding: 1.6rem 1.25rem; }
  .continue nav a { min-height: 104px; }
}

@media (prefers-reduced-motion: no-preference) {
  .heroCopy { animation: future-rise 760ms ease-out both; }
  .portal { animation: future-reveal linear both; animation-timeline: view(); animation-range: entry 10% cover 28%; }
}

@keyframes future-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes future-reveal {
  from { opacity: .15; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .actions a,
  .quickActions a,
  .accountBandActions a,
  .launchArt,
  .launchLinks a,
  .platformActions a,
  .portalCopy > a,
  .portalArt img,
  .continue nav a { transition: none; }
  .featuredCard img,
  .featuredCopy > a { transition: none; }
  .portal:hover .portalArt img { transform: none; }
  .launchCard:hover .launchArt { transform: none; }
  .featuredCard:hover img { transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .actions a,
  .launchLinks a,
  .launchCopy li,
  .chapterNav { backdrop-filter: none; }
  .chapterNav { background: #020913; }
}

@media (prefers-contrast: more) {
  .portal,
  .distinction,
  .proofGrid,
  .connectionRail { border-color: rgb(213 239 255 / 55%); }
}

@media (forced-colors: active) {
  .heroShade,
  .heroGrid,
  .portalArt::after { display: none; }
  .portal,
  .launchCard,
  .distinction { border: 2px solid CanvasText; }
}
