/* FILE: projects/nweb/index.css */
/* SCOPE: Homepage aligned to PPT definitions. Font hierarchy strictly enforced. */

:root {
  /* Colors */
  --black: #050505;
  --white: #F8F9FA;
  --wgold: rgba(249, 244, 238, 0.8);
  --gold: #D48631;
  --green: #5DB87A;
  --blue: #61A9E4;
  --cream: #F2EFEA;
  --cyan: #8CECFF;
  
  /* Font Hierarchy Definition */
  --font-super: "Courier New", Courier, monospace;      /* Supertitle */
  --font-title: "IBM Plex Serif", Georgia, serif;            /* Title */
  --font-sub: "IBM Plex Sans", "Didact Gothic", "Segoe UI", Helvetica, Arial, sans-serif;       /* Subtitle / Body */
  --font-label: "Courier New", Courier, monospace;      /* Label */
  --font-atelier: "Cormorant Garamond", "Garamond", Georgia, serif;      /* Atelier = Garamond */
  
  /* Utilities */
  --edge: 4vw;
  --glow-black: 0 2px 8px rgba(0,0,0,0.8), 0 4px 16px rgba(0,0,0,0.6);
  --glow-gold: 0 0 16px rgba(212,134,49,0.5);
  --glow-green: 0 0 16px rgba(93,184,122,0.5);
  --glow-blue: 0 0 16px rgba(97,169,228,0.5);
}

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

html.Index, body.Body { 
  margin: 0; 
  width: 100%; 
  height: 100%; 
  overflow: hidden; 
  background: var(--black); 
  color: var(--white); 
  font-family: var(--font-sub); 
  -webkit-font-smoothing: antialiased; 
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input { font: inherit; outline: none; }

/* ── AX / BX / CX STRUCTURE ── */
.Stack.Bx { 
  width: 100vw; 
  height: 100dvh; 
  overflow-x: hidden; 
  overflow-y: auto; 
  scroll-snap-type: y mandatory; 
  scroll-behavior: smooth; 
}

.Cx1 { 
  position: relative; 
  width: 100vw; 
  height: 100dvh; 
  min-height: 100dvh; 
  overflow: hidden; 
  isolation: isolate; 
  scroll-snap-align: start; 
  scroll-snap-stop: always; 
  background: #020304; 
}

.Cx1 > *:not(.bkgrnd) { position: relative; z-index: 2; }

.bkgrnd.Dx { 
  position: absolute; 
  inset: 0; 
  z-index: 0; 
  background-position: center center; 
  background-size: cover; 
  background-repeat: no-repeat; 
  opacity: 0.85; /* Soften backgrounds so text pops */
}

/* Background mappings */
.Hero .bkgrnd { background-image: url("assets/system1.png"); }
.Verbatim .bkgrnd { background-image: url("assets/system2.png"); }
.Atelier .bkgrnd { background-image: url("assets/system3.png"); }
.Nodarama .bkgrnd { background-image: url("assets/system4.png"); }
.Proof .bkgrnd { background-image: url("assets/system5.png"); }
.Cta .bkgrnd { background-image: url("assets/system6.png"); }

/* ── TYPOGRAPHY HIERARCHY (PPT ALIGNED) ── */

/* 1. Supertitle: Courier New (Oversized) */
.Supertitle.Eo {
  font-family: var(--font-super);
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 1.0vh 0;
  color: var(--white);
  text-shadow: 1px 2.5px 1.5px rgba(0,0,0,0.95), 2.5px 4px 4.5px rgba(36, 35, 35, 0.943);
}

/* 2. Title: Cormorant Garamond (Large) */
.Title.Eo {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 500;
  margin: 0 0 2vh 0;
  color: var(--wgold);
}

.Atitle.Eo {
  font-family: var(--font-atelier);
  font-size: clamp(3.8rem, 3vw, 4rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: 0.07em;
  margin: 0 0 2vh 0;
  color: var(--blue);
}

.Vtitle.Eo {
  font-family: var(--font-super);
  font-size: clamp(1.8rem, 3vw, 4rem);
  font-weight: 400;
  line-height: 1.0;
  margin: 0 0 2vh 0;
  color: var(--green);
}

/* 3. Subtitle: IBM Plex Sans (Medium) */
.Subtitle.Eo {
  font-family: var(--font-sub);
  font-size: clamp(1.05rem, 1.35vw, 1.8rem);
  font-weight: 500;
  line-height: 1.42;
  margin: 0 0 0vh 0;
  color: rgba(242, 239, 234, 0.88);
}

/* 4. Body: IBM Plex Sans (Regular) */
.Body.Eo,
.Body.Fo {
  font-family: var(--font-sub);
  font-size: clamp(0.95rem, 1vw, 1.32rem);
  font-weight: 400;
  line-height: 1.48;
  margin: 0 0 1.35vh 0;
  color: rgba(242, 239, 234, 0.78);
}

/* 5. Label: Courier New, loose spacing, all caps (Smallest) */
.Label.Eo,
.Label {
  font-family: var(--font-label);
  font-size: clamp(0.7rem, 0.9vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0vh 0;
}

/* ── LAYOUT BLOCKS ── */

.Header.Dx {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50vw;
  text-shadow: var(--glow-black);
}

/* Anchor Helpers */
.Header-Left { left: var(--edge); top: 50%; transform: translateY(-50%); text-align: left; }
.Header-Right { right: var(--edge); top: 50%; transform: translateY(-50%); text-align: right; }

/* ── 1. HERO SECTION ── */
.Hero .Logo.Dx {
  position: absolute;
  left: 2vw;
  top: 2vh;
  width: 100%;
  height: auto;
  width: clamp(150px, 30vw, 300px);
}
.Hero .Logo.Eo { width: 100%; height: auto; filter: drop-shadow(var(--glow-black)); }

/* Hero Text: Challenging Left Top Anchor */
.Hero .Header {
  top: 10vh;
  left: 3vw;
  width: 75%;
  text-align: left;
}

/* Hero opener spacing override */
.Hero .Supertitle.Eo {
  line-height: 1.25;
  margin-bottom: .5vh;
}

.Hero .Subtitle.Eo {
  line-height: 1.0;
  margin-bottom: 0.0vh;
}

.Hero .Body.Eo,
.Hero .Body.Eo1,
.Hero .Body.Eo2 {
  line-height: 1.0;
  margin-bottom: 0.5vh;
}

.Hero .Label.Eo {
  margin-bottom: 0vh;
}


.Hero .HeroAccent-Copy {
  color: var(--gold);
  text-shadow: var(--glow-gold), var(--glow-black);
}

.Hero .HeroAccent-Verbatim {
  color: var(--green);
  text-shadow: var(--glow-green), var(--glow-black);
}


.Hero .Header,
.Hero .Header .Supertitle.Eo,
.Hero .Header .Title.Eo,
.Hero .Header .Subtitle.Eo,
.Hero .Header .Body.Eo1,
.Hero .Header .Body.Eo2,
.Hero .Header .Final.Eo {
  text-shadow:
    0 2px 2px rgba(0,0,0,0.96),
    0 5px 12px rgba(0,0,0,0.86),
    0 0 24px rgba(8,8,8,0.9);
}

.Hero .HeroAccent-Copy {
  text-shadow:
    0 2px 2px rgba(0,0,0,0.96),
    0 5px 12px rgba(0,0,0,0.86),
    0 0 18px rgba(212,134,49,0.48);
}

.Hero .HeroAccent-Verbatim {
  text-shadow:
    0 2px 2px rgba(0,0,0,0.96),
    0 5px 12px rgba(0,0,0,0.86),
    0 0 18px rgba(93,184,122,0.48);
}

/* Products & Values: Challenging Bottom Right Anchor */
/* Products & Values: Hero splash layout */
.Hero .Products.Dx {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.Hero .Product {
  color: var(--white);
  text-align: right;
  pointer-events: auto;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.Hero .Product span {
  font-family: var(--font-super);
  font-size: clamp(4.5rem, 9vw, 6rem);
  font-weight: 450;
  line-height: 1;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0,0,0,0.95), 0 0 1px rgba(0,0,0,0.95);
}

.Hero .Product.Atelier span {
  font-family: var(--font-atelier);
  font-weight: 500;
  letter-spacing: 0.22em;
}

.Hero .Product em {
  font-family: var(--font-label);
  font-size: clamp(1.2rem, 1vw, 1.2rem);
  letter-spacing: 0.2em;
  font-style: normal;
  text-transform: UPPERCASE;
  color: rgba(255,255,255,0.76);
  margin-top: 0.5vh;
}

.Hero .Product.Eo1 {
  position: absolute;
  right: 10vw;
  top: 45vh;
  width: 50vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2vh;
}

.Hero .Product.Eo1 em {
  align-self: flex-end;
  text-align: right;
}

.Hero .Product.Eo2 {
  position: absolute;
  right: 5vw;
  top: 45vh;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
}

.Hero .Product.Eo2 em {
  align-self: flex-start;
  text-align: left;
}

.Hero .Product.Eo1:hover span { color: var(--blue); text-shadow: var(--glow-blue), var(--glow-black); letter-spacing: 0.18em; }
.Hero .Product.Eo2:hover span { color: var(--green); text-shadow: var(--glow-green), var(--glow-black); letter-spacing: 0.12em; }

.Hero .Values {
  position: absolute;
  right: 2vw;
  bottom: 3vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  font-family: var(--font-super);
  font-size: clamp(1.2rem, 2vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  pointer-events: auto;
}

.Hero .Values span:nth-child(1) { opacity: 0.2; }
.Hero .Values span:nth-child(2) { opacity: 0.4; }
.Hero .Values span:nth-child(3) { opacity: 0.7; }
.Hero .Values b {
  opacity: 1;
  color: var(--gold, #d98f2b);
  text-shadow: var(--glow-gold, 0 0 12px rgba(217,143,43,.45));
  font-weight: 700;
}

/* Hero composition refinements */
.Hero .Supertitle.Eo {
  font-size: clamp(2rem, 4.3vw, 5.6rem);
  letter-spacing: 0.18em;
}

.Hero .Title.Eo {
  max-width: 60vw;
  font-size: clamp(1.8rem, 1.55vw, 2.05rem);
  line-height: 1.48;
}

.Hero .Body.Eo1 {
  max-width: 48vw;
  margin-top: .5vh;
  font-size: clamp(1.14rem, 1.02vw, 1.22rem);
  line-height: 1.5rem;
  color: rgba(255,255,255,0.86);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.Hero .Product.Eo2 {
  top: 49vh;
  right: 6vw;
}

.Hero .Product.Eo2 span {
  font-size: clamp(4.8rem, 8.1vw, 7.4rem);
  letter-spacing: 0.12em;
}

.Hero .Product.Eo2 em {
  font-size: clamp(0.82rem, 1vw, 1.08rem);
  letter-spacing: 0.42em;
  color: rgba(255,255,255,0.82);
}

.Hero .Values {
  right: 3vw;
  bottom: 6vh;
  font-size: clamp(1.25rem, 1.9vw, 2.4rem);
  opacity: 0.86;
}

.HeroPreview.Dx {
  position: absolute;
  right: 23vw;
  bottom: 6.5vh;
  width: clamp(280px, 30vw, 560px);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(5,8,10,0.58);
  box-shadow: 0 16px 38px rgba(0,0,0,0.58), inset 0 0 24px rgba(93,184,122,0.08);
  overflow: hidden;
}

.HeroPreview-Label {
  position: absolute;
  right: 0.8rem;
  top: 0.65rem;
  z-index: 2;
  font-family: var(--font-label);
  font-size: clamp(0.58rem, 0.72vw, 0.82rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.HeroPreview-Video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.82;
  filter: contrast(1.05) brightness(0.82);
}

.HeroPreview.Dx::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.24), rgba(0,0,0,0.02) 42%, rgba(0,0,0,0.32));
  pointer-events: none;
}

/* ── PRODUCT CARDS (SECTIONS 2 & 3) ── */
.Card.Dx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 2.5rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.Card-Right { right: var(--edge); border-left: 3px solid var(--green); }
.Card-Left { left: var(--edge); border-right: 3px solid var(--blue); }

.Card .Title.Eo {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 1.08vw, 1.34rem);
  font-weight: 600;
  color: rgba(248,249,250,0.9);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1vh;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 1vh;
}

.Card .Body.Eo {
  font-size: clamp(0.96rem, 1vw, 1.26rem);
  line-height: 1.5;
  color: rgba(242,239,234,0.76);
}

.Card .List.Ex {
  list-style: none;
  padding: 0;
  margin: 1.7vh 0 2.5vh 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25vh 1.55vw;
}

.Card .Body.Fo {
  font-family: var(--font-sub);
  font-size: clamp(0.82rem, 0.88vw, 1.06rem);
  font-weight: 400;
  color: rgba(242,239,234,0.7);
  position: relative;
  padding-left: 1.05rem;
  line-height: 1.34;
}

.Card-Right .Body.Fo::before {
  content: "▹"; position: absolute; left: 0; color: var(--green); font-family: var(--font-super);
}
.Card-Left .Body.Fo::before {
  content: "▹"; position: absolute; left: 0; color: var(--blue); font-family: var(--font-super);
}

.Card .Button {
  display: block;
  width: 100%;
  padding: 1.35vh 0;
  text-align: center;
  font-family: var(--font-label);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2.5vh;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.Card-Right .Button { background: rgba(93,184,122,0.1); color: var(--blue); border-color: var(--blue); }
.Card-Right .Button:hover { background: var(--blue); color: var(--black); box-shadow: var(--glow-blue); }

.Card-Left .Button { background: rgba(97,169,228,0.1); color: var(--green); border-color: var(--green); }
.Card-Left .Button:hover { background: var(--green); color: var(--black); box-shadow: var(--glow-green); }

/* ── 4. NODARAMA PHILOSOPHY ── */
.Nodarama .Text {
  position: absolute;
  left: var(--edge);
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
}

.Nodarama .Divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 3vh 0;
}

.Nodarama .Body.Eo1 span { color: var(--green); font-weight: 700; font-family: var(--font-super); }
.Nodarama .Body.Eo2 span { color: var(--blue); font-weight: 700; font-family: var(--font-super); }
.Nodarama .Body.Eo3 span { color: var(--gold); font-weight: 700; font-family: var(--font-super); }

.Nodarama .ProofBlock-Dx1 {
  position: absolute;
  left: 0vw;
  top: 0;
  width: 30vw;
  height: 100vh;
  padding: 1rem;
  box-shadow: inset 0 0 18px rgba(97,169,228,0.08);
  background: rgba(20, 20, 20, 0.112);
}

.Nodarama .ProofBlock {
  position: absolute;
  right: 0vw;
  bottom: 0vh;
  width: 30vw;
  height: 100vh;
  padding: 1rem;
  box-shadow: inset 0 0 18px rgba(97,169,228,0.08);
  background: rgba(20, 20, 20, 0.112);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Nodarama .ProofBlock .Title { color: var(--gold); font-family: var(--font-title); font-size: 2.5rem; }
.Nodarama .ProofBlock-Dx1 .Title { color: white; font-family: var(--font-title); font-size: 2.5rem; }

.Nodarama .ProofBlock .MicroBlock {
  margin-top: 3vh;
  border-left: 2px solid white;
  padding-left: 1.5rem;
}

.Nodarama .Micro {
  font-family: var(--font-label);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0vh;
}

.Nodarama .Line {
  position: absolute;
  bottom: 0vh;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  color: var(--white);
}
.Nodarama .Line span { color: var(--gold); font-style: italic; }

/* ── 5. PROOF IN ACTION ── */
.Proof .Frame {
  position: absolute;
  top: 15%;
  left: 6%;
  width: 88%;
  height: 74%;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.85fr);
  gap: 1.65rem;
  align-items: stretch;
}

.Proof .MediaShell {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 0.9rem;
}

.Proof .Media {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  max-height: none;
  background: rgba(5,5,5,0.58);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.65);
}

.Proof .Panel,
.Proof video,
.Proof img {
  width: 100%;
  height: 100%;
}

.Proof .Panel {
  overflow: hidden;
}

.Proof video {
  object-fit: cover;
  object-position: center center;
  transform: none;
  background: transparent;
}

.Proof .Panel > img {
  object-fit: contain;
  background: var(--black);
}

.FeatureMediaVideo {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: inherit;
  object-fit: contain;
  object-position: center center;
  background: #050505;
}

.Proof .Panel[hidden] {
  display: none !important;
}

.Proof .Sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ProofTabs.Ex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.Tab.Button {
  min-height: 52px;
  background: rgba(20,20,20,0.76);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-items: start;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.Tab.Button span {
  font-family: var(--font-label);
  font-size: clamp(0.74rem, 0.82vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.95;
}

.Tab.Button em {
  font-family: var(--font-sub);
  font-size: clamp(0.72rem, 0.78vw, 0.95rem);
  font-style: normal;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.Tab.Button img {
  width: 100%;
  height: 100%;
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
  opacity: 0.45;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.Tab.Button:hover {
  background: rgba(40,40,40,0.8);
}

.Tab.Button:hover img {
  opacity: 0.72;
}

/* AMP = blue / Atelier color */
.Tab.Fo1 {
  border-color: rgba(97,169,228,0.35);
  box-shadow: inset 0 0 18px rgba(97,169,228,0.08);
}

.Tab.Fo1 img {
  filter: drop-shadow(0 0 4px rgba(97,169,228,0.25));
}

.Tab.is-active.Fo1 {
  border-color: var(--blue);
  box-shadow:
    0 0 15px rgba(97,169,228,0.35),
    inset 0 0 26px rgba(97,169,228,0.12);
}

.Tab.is-active.Fo1 img {
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--blue));
}

/* AUX = green / Verbatim color */
.Tab.Fo2 {
  border-color: rgba(93,184,122,0.35);
  box-shadow: inset 0 0 18px rgba(93,184,122,0.08);
}

.Tab.Fo2 img {
  filter: drop-shadow(0 0 4px rgba(93,184,122,0.25));
}

.Tab.is-active.Fo2 {
  border-color: var(--green);
  box-shadow:
    0 0 15px rgba(93,184,122,0.35),
    inset 0 0 26px rgba(93,184,122,0.12);
}

.Tab.is-active.Fo2 img {
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--green));
}

.Info.Fx {
  flex: 2;
  background: rgba(5,8,10,0.78);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.Info.is-amp {
  border-color: var(--blue);
  box-shadow:
    0 0 15px rgba(97,169,228,0.35),
    inset 0 0 26px rgba(97,169,228,0.12);
}

.Info.is-amp .Title {
  color: var(--blue);
}

.Info.is-aux {
  border-color: var(--green);
  box-shadow:
    0 0 15px rgba(93,184,122,0.35),
    inset 0 0 26px rgba(93,184,122,0.12);
}

.Info.is-aux .Title {
  color: var(--green);
}
.Proof .Info.Fx {
  display: flex;
  flex-direction: column;
}

.Proof .Info.Fx .Title.Go {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: rgba(5,8,10,0.78);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.04);
}

.Proof .Info.Fx .Title.Go::before {
  content: "YOU ARE PREVIEWING";
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-label);
  font-size: clamp(0.64rem, 0.7vw, 0.86rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.Proof .Info.Fx .Body.Go {
  flex: 0 0 auto;
  margin: 0 0 1rem 0;
  font-size: clamp(1.08rem, 1.22vw, 1.48rem);
  line-height: 1.42;
}

.Info.Fx {
  flex: 2;
  background: rgba(5,8,10,0.78);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.Info.is-amp .Title { color: var(--blue); }
.Info.is-aux .Title { color: var(--green); }

.Proof .Info.Fx .MicroBlock {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.Proof .Info.Fx .Micro {
  font-family: var(--font-sub);
  font-size: clamp(0.78rem, 0.82vw, 1rem);
  line-height: 1.35;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.Proof .Info.Fx .Micro span {
  display: block;
  margin-bottom: 0.18rem;
  font-family: var(--font-label);
  font-size: clamp(0.68rem, 0.72vw, 0.9rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.ProofActions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.ProofActions .Button {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  font-family: var(--font-label);
  font-size: clamp(0.66rem, 0.72vw, 0.9rem);
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.ProofActions .Button.Eo1 {
  color: var(--green);
  border-color: var(--green);
  background: rgba(93,184,122,0.08);
}

.ProofActions .Button.Eo1:hover {
  color: var(--black);
  background: var(--green);
  box-shadow: var(--glow-green);
}

.ProofActions .Button.Eo2 {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(97,169,228,0.08);
}

.ProofActions .Button.Eo2:hover {
  color: var(--black);
  background: var(--blue);
  box-shadow: var(--glow-blue);
}

.Proof .Info.Fx .Title.Go {
  margin-bottom: 0.8rem;
}

.Proof .Info.Fx .Body.Go {
  font-family: var(--font-sub);
  font-size: clamp(0.95rem, 1vw, 1.18rem);
  line-height: 1.48;
  color: rgba(255,255,255,0.94);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.75);
}

.Proof .Supertitle.Do {
  font-family: var(--font-super);
  font-size: clamp(1.55rem, 2.6vw, 3.6rem);
  line-height: 1.15;
  padding: 0 8vw;
  color: var(--white);
  text-shadow: var(--glow-black);
}


/* Proof connection tabs and logos */
.ProofTabs.Ex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ProofTabs .Tab.Button {
  min-height: 92px;
  background: rgba(5,5,5,0.58);
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 10px 30px rgba(0,0,0,0.65);
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-items: start;
  gap: 0.8rem;
  padding: 0.85rem 1.05rem;
  transform: none;
}

.ProofTabs .Tab.Button span {
  font-size: clamp(0.9rem, 1vw, 1.18rem);
  letter-spacing: 0.2em;
  opacity: 1;
}

.ProofTabs .Tab.Button em {
  font-family: var(--font-sub);
  font-size: clamp(0.82rem, 0.88vw, 1.05rem);
  font-style: normal;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
}

.ProofTabs .Tab.Button:hover {
  background: rgba(24,32,38,0.94);
  transform: translateY(-1px);
}

.ProofTabs .Tab.is-active.Fo1 span { color: var(--blue); }
.ProofTabs .Tab.is-active.Fo2 span { color: var(--green); }

.ConnectionLogos.Ex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.ConnectionLogo {
  width: 100%;
  height: auto;
  min-height: 92px;
  object-fit: contain;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(5,8,10,0.62);
  border: 1px solid rgba(255,255,255,0.14);
  opacity: 0.9;
}

.ConnectionLogo.Amp {
  border-color: rgba(97,169,228,0.34);
  filter: drop-shadow(0 0 8px rgba(97,169,228,0.25));
}

.ConnectionLogo.Aux {
  border-color: rgba(93,184,122,0.34);
  filter: drop-shadow(0 0 8px rgba(93,184,122,0.25));
}


.ProofTabs .TabLogo {
  width: clamp(88px, 10vw, 160px);
  height: 52px;
  object-fit: contain;
  opacity: 0.88;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.16));
}

.ProofTabs .Tab.Fo1 .TabLogo {
  filter: drop-shadow(0 0 8px rgba(97,169,228,0.35));
}

.ProofTabs .Tab.Fo2 .TabLogo {
  filter: drop-shadow(0 0 8px rgba(93,184,122,0.35));
}

.ProofTabs .Tab.Button {
  grid-template-columns: minmax(110px, 0.72fr) auto 1fr;
}

.ProofTabs .Tab.Button {
  opacity: 0.58;
  border-width: 1px;
}

.ProofTabs .Tab.Button.is-active {
  opacity: 1;
  border-width: 2px;
  transform: translateY(-2px);
}

.ProofTabs .Tab.Button.is-active::after {
  content: "ACTIVE";
  justify-self: end;
  font-family: var(--font-label);
  font-size: clamp(0.58rem, 0.62vw, 0.72rem);
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.82);
}

.ProofTabs .Tab.Fo1.is-active {
  background: rgba(97,169,228,0.14);
}

.ProofTabs .Tab.Fo2.is-active {
  background: rgba(93,184,122,0.14);
}

.ProofTabs .Tab.Button:not(.is-active) {
  background: rgba(5,8,10,0.82);
  box-shadow: 0 10px 30px rgba(0,0,0,0.65), inset 0 0 18px rgba(0,0,0,0.32);
}

.ProofTabs .Tab.Button.is-active {
  background: rgba(5,8,10,0.88);
  box-shadow:
    0 0 18px rgba(93,184,122,0.22),
    0 10px 30px rgba(0,0,0,0.72),
    inset 0 0 24px rgba(0,0,0,0.38);
}

.ProofTabs .Tab.Fo1.is-active {
  background: rgba(5,8,10,0.88);
  box-shadow:
    0 0 18px rgba(97,169,228,0.24),
    0 10px 30px rgba(0,0,0,0.72),
    inset 0 0 24px rgba(0,0,0,0.38);
}

.ProofTabs .Tab.Fo2.is-active {
  background: rgba(5,8,10,0.88);
  box-shadow:
    0 0 18px rgba(93,184,122,0.24),
    0 10px 30px rgba(0,0,0,0.72),
    inset 0 0 24px rgba(0,0,0,0.38);
}



/* ── 6. CALL TO ACTION (BENTO GRID) ── */
.Cta .Grid {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
}

.Cta .Grid > .Button,
.Cta .Form.Ex {
  background: rgba(15,15,15,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
}

.Cta .Grid > .Button,
.Cta .Form.Ex .Button {
  font-family: var(--font-label);
  font-size: clamp(0.9rem, 1vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.Cta .Grid > .Button {
  padding: 1.1rem 2rem;
  transition: all 0.3s ease;
}

.Cta .Grid > .Button:hover,
.Cta .Form.Ex:hover {
  transform: translateY(-5px);
  background: rgba(25,25,25,0.9);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.Cta .Form.Ex {
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 2rem;
}

.Cta .Form.Ex .Button {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  max-height: calc(100% - 38px - 0.55rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.Cta .Form.Ex .Input.Fo {
  width: 100%;
  height: 38px;
  min-height: 38px;
  flex: 0 0 38px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 0 0.85rem;
  color: var(--white);
  font-family: var(--font-sub);
  font-size: clamp(0.8rem, 0.85vw, 1rem);
}

.Cta .Form.Ex .Input.Fo:focus {
  border-color: var(--gold);
}

/* CTA color ownership */
.Cta .Button.Eo1 {
  color: var(--gold);
  border-color: var(--gold);
}

.Cta .Button.Eo2 {
  color: var(--green);
  border-color: var(--green);
}

.Cta .Button.Eo3 {
  color: var(--blue);
  border-color: var(--blue);
}

.Cta .Button.Fo4 {
  color: var(--gold);
  border-color: var(--gold);
}

.Cta .Button.Eo1:hover,
.Cta .Button.Fo4:hover {
  color: var(--black);
  background: var(--gold);
  box-shadow: var(--glow-gold);
}

.Cta .Button.Eo2:hover {
  color: var(--black);
  background: var(--green);
  box-shadow: var(--glow-green);
}

.Cta .Button.Eo3:hover {
  color: var(--black);
  background: var(--blue);
  box-shadow: var(--glow-blue);
}


/* Final CTA unified card styling */
.Cta .Cta-Header {
  position: absolute;
  top: 3.5vh;
  left: 8vw;
  right: 8vw;
  z-index: 3;
}

.Cta .Cta-Header .Supertitle.Eo {
  font-size: clamp(2.4rem, 4vw, 5.2rem);
  margin-bottom: 0.35rem;
}

.Cta .Cta-Header .Subtitle.Eo {
  color: rgba(35,35,35,0.86);
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.08;
  text-shadow: 0 1px 2px rgba(255,255,255,0.38);
}

.Cta .Grid {
  top: 18%;
  width: 78%;
  height: 68%;
  gap: 2rem;
}

.Cta .Grid > .Button,
.Cta .Form.Ex {
  --cta-color: var(--gold);
  --cta-rgb: 212,134,49;
  background: rgba(15,15,15,0.8);
  border: 1px solid rgba(var(--cta-rgb),0.48);
  border-radius: 12px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 0.5rem;
  padding: 2rem 2.3rem;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 22px rgba(var(--cta-rgb),0.05);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.Cta .Grid > .Button .Title,
.Cta .Form.Ex .Title {
  font-family: var(--font-label);
  font-size: clamp(0.95rem, 1.05vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--cta-color);
}

.Cta .Grid > .Button .Label,
.Cta .Form.Ex .Label {
  font-family: var(--font-label);
  font-size: clamp(0.82rem, 0.92vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.Cta .Grid > .Button:hover,
.Cta .Grid > .Button.is-hovering,
.Cta .Grid > .Button.is-pressed,
.Cta .Form.Ex:hover,
.Cta .Form.Ex:focus-within {
  transform: translateY(-4px);
  background:
    linear-gradient(145deg, rgba(var(--cta-rgb),0.88), rgba(var(--cta-rgb),0.38)),
    rgba(15,15,15,0.88);
  border-color: rgba(255,255,255,0.94);
  box-shadow:
    0 0 30px rgba(var(--cta-rgb),0.58),
    0 18px 34px rgba(0,0,0,0.55),
    inset 0 0 34px rgba(255,255,255,0.08);
}

.Cta .Grid > .Button:hover .Title,
.Cta .Grid > .Button:hover .Label,
.Cta .Grid > .Button.is-hovering .Title,
.Cta .Grid > .Button.is-hovering .Label,
.Cta .Grid > .Button.is-pressed .Title,
.Cta .Grid > .Button.is-pressed .Label,
.Cta .Form.Ex:hover .Title,
.Cta .Form.Ex:hover .Label,
.Cta .Form.Ex:focus-within .Title,
.Cta .Form.Ex:focus-within .Label {
  color: rgba(35,35,35,0.95);
  text-shadow: none;
}

.Cta .Button.Eo1 {
  --cta-color: var(--gold);
  --cta-rgb: 212,134,49;
}

.Cta .Button.Eo2 {
  --cta-color: var(--green);
  --cta-rgb: 93,184,122;
}

.Cta .Button.Eo3 {
  --cta-color: var(--blue);
  --cta-rgb: 97,169,228;
}

.Cta .Form.Ex {
  --cta-color: #eaff00;
  --cta-rgb: 234,255,0;
}

.Cta .Form.Ex .Form-Header {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  width: 100%;
}

.Cta .Form-Inputs {
  width: 100%;
  margin-top: 1.2rem;
}

.Cta .Form.Ex .Input.Fo {
  width: 100%;
  height: 44px;
  min-height: 44px;
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(var(--cta-rgb),0.72);
  border-radius: 6px;
  padding: 0 0.95rem;
  color: rgba(255,255,255,0.94);
  font-family: var(--font-sub);
  font-size: clamp(0.95rem, 1vw, 1.2rem);
}

.Cta .Form.Ex:hover .Input.Fo,
.Cta .Form.Ex:focus-within .Input.Fo {
  border-color: rgba(35,35,35,0.72);
}

.Cta .Form.Ex .Submit-Btn {
  display: none;
}


/* Verbatim split CTA: same pattern for wide and tall views */
/* Verbatim CTA: one visual button with invisible left/right click zones */
.Cta .Grid > .SplitCta {
  grid-column: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  grid-template-rows: auto 1fr;
  align-items: center;
  justify-items: stretch;
  text-align: center;
  border-color: var(--green);
  --cta-color: var(--green);
  --cta-rgb: 93,184,122;
}

.Cta .Grid > .SplitCta::before {
  content: "";
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  width: 1px;
  background: rgba(93,184,122,0.72);
  pointer-events: none;
}

.Cta .Grid > .SplitCta::after {
  content: none;
}

.Cta .Grid > .SplitCta .Title {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  margin: 0;
  text-align: center;
  color: var(--green);
  pointer-events: none;
}

.Cta .Grid > .SplitCta .Title::before,
.Cta .Grid > .SplitCta .Title::after {
  content: none;
}

.Cta .Grid > .SplitCta .SplitCta-Label {
  grid-row: 2;
  align-self: center;
  display: block !important;
  padding: 1rem;
  font-family: var(--font-label);
  font-size: clamp(0.82rem, 0.92vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  pointer-events: none;
}

.Cta .Grid > .SplitCta .SplitCta-LeftText {
  grid-column: 1;
  text-align: left;
}

.Cta .Grid > .SplitCta .SplitCta-RightText {
  grid-column: 3;
  text-align: right;
}

.Cta .Grid > .SplitCta .SplitCta-Hit {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 4;
  cursor: pointer;
  background: transparent;
}

.Cta .Grid > .SplitCta .SplitCta-HitLeft {
  left: 0;
}

.Cta .Grid > .SplitCta .SplitCta-HitRight {
  right: 0;
}

.Cta .Grid > .SplitCta .SplitCta-Hit:hover,
.Cta .Grid > .SplitCta .SplitCta-Hit:focus,
.Cta .Grid > .SplitCta .SplitCta-Hit:active {
  background: transparent;
  box-shadow: none;
  outline: none;
}

.Cta .Grid > .SplitCta:hover .Title,
.Cta .Grid > .SplitCta.is-hovering .Title,
.Cta .Grid > .SplitCta.is-pressed .Title,
.Cta .Grid > .SplitCta:hover .SplitCta-Label,
.Cta .Grid > .SplitCta.is-hovering .SplitCta-Label,
.Cta .Grid > .SplitCta.is-pressed .SplitCta-Label {
  color: rgba(35,35,35,0.95);
  text-shadow: none;
}

.Card Bx {
  bottom: 15%;
  transform: translateY(-50%);
  width: 60%;
  border: 1px solid rgba(15, 15, 15, 0.398);
}

@media (max-aspect-ratio: 1/1) {
  .Cta .Button.Eo2.SplitCta {
    grid-column: 1 / -1;
    min-height: 150px;
  }

  .Cta .Grid > .SplitCta .SplitCta-Label {
    font-size: clamp(0.88rem, 3.8vw, 1.12rem);
  }
}
/* CTA read-more article strip */
.Cta .ReadMore.Dx {
  position: absolute;
  left: 50%;
  bottom: 4.5vh;
  transform: translateX(-50%);
  width: min(78vw, 1180px);
  min-height: 12vh;
  padding: 1.15rem 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  background: rgba(5,8,10,0.86);
  border: 1px solid rgba(212,134,49,0.48);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.52), inset 0 0 22px rgba(212,134,49,0.05);
}

.Cta .ReadMore .Title.Eo {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-label);
  font-size: clamp(1rem, 1.1vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.Cta .ReadMore .List.Ex {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.Cta .ReadMore .Body.Fo {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-sub);
  font-size: clamp(1rem, 1.08vw, 1.35rem);
  font-weight: 600;
  line-height: 1.28;
}

.Cta .ReadMore a {
  display: block;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

.Cta .ReadMore a:hover {
  color: var(--gold);
  text-shadow: var(--glow-gold);
}

@media (min-aspect-ratio: 1/1) {
  .Cta .Grid {
    top: 18%;
    height: 48%;
  }
}

/* Unique bottom article links for final CTA */
.Cta .CtaArticles-Dx {
  position: absolute;
  left: 50%;
  bottom: 4vh;
  transform: translateX(-50%);
  z-index: 4;
  width: min(78vw, 1180px);
  min-height: 12vh;
  margin: 0;
  padding: 1.15rem 1.5rem;
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  background: rgba(5, 8, 10, 0.9);
  border: 1px solid rgba(212, 134, 49, 0.58);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.56), inset 0 0 22px rgba(212,134,49,0.06);
}

.Cta .CtaArticles-Title {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-label);
  font-size: clamp(1rem, 1.12vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.Cta .CtaArticles-Links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.Cta .CtaArticles-Link {
  display: block;
  min-width: 0;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-sub);
  font-size: clamp(1.05rem, 1.12vw, 1.4rem);
  font-weight: 700;
  line-height: 1.26;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.82);
}

.Cta .CtaArticles-Link:hover,
.Cta .CtaArticles-Link:focus {
  color: var(--gold);
  text-shadow: var(--glow-gold), var(--glow-black);
}

@media (min-aspect-ratio: 1/1) {
  .Cta .Grid {
    top: 19%;
    height: 46%;
  }
}

@media (max-aspect-ratio: 1/1) {
  .Cta .CtaArticles-Dx {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }

  .Cta .CtaArticles-Links {
    grid-template-columns: 1fr;
  }
}

/* Hide CTA scroll button */
.Cta .Top.Do,
.Cta .Next.Do {
  display: none !important;
}

/* ── NAV ATOMS ── */
.Next.Do,
.Top.Do {
  position: absolute;
  bottom: 4vh;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.Next.Do:hover,
.Top.Do:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.Card.Bx {
  bottom: 15%;
  transform: translateY(-50%);
  width: 60%;
  border: 1px solid rgba(15, 15, 15, 0.398);
}

/* ── RESPONSIVE (STACKED VIEW) ── */
@media (max-aspect-ratio: 1/1) {
  html.Index,
  body.Body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .Stack.Bx {
    height: auto;
    min-height: 100svh;
    overflow: visible;
    scroll-snap-type: none;
  }

  .Cx1 {
    width: 100%;
    height: auto;
    min-height: 100svh;
    overflow: visible;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    padding: 10vh var(--edge);
    display: flex;
    flex-direction: column;
    gap: 4vh;
  }

  .Cx1 > *:not(.bkgrnd),
  .Header.Dx,
  .Hero .Header,
  .Hero .Products.Dx,
  .Hero .Product.Eo1,
  .Hero .Product.Eo2,
  .Hero .Values,
  .HeroPreview.Dx,
  .Card.Dx,
  .Nodarama .ProofBlock-Dx1,
  .Nodarama .ProofBlock,
  .Nodarama .Line,
  .Proof .Supertitle.Do,
  .Proof .Frame,
  .Cta .Cta-Header,
  .Cta .Grid,
  .Next.Do,
  .Top.Do {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0;
  }

  .Header.Dx,
  .Hero .Header,
  .Header-Left,
  .Header-Right {
    text-align: left;
    align-items: flex-start;
  }

  .Hero .Logo.Dx {
    width: clamp(150px, 58vw, 300px) !important;
    margin-bottom: 0;
  }

  .Hero .Products.Dx {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    pointer-events: auto;
  }

  .Hero .Product,
  .Hero .Product.Eo1,
  .Hero .Product.Eo2,
  .Hero .Values {
    align-items: flex-start;
    text-align: left;
  }

  .Hero .Product.Eo2 {
    width: 100% !important;
  }

  .Hero .Product.Eo2 span {
    font-size: clamp(2.8rem, 16vw, 5.2rem);
    overflow-wrap: anywhere;
  }

  .HeroPreview.Dx {
    aspect-ratio: 16 / 9;
    margin-top: 0;
  }

  .Card.Dx {
    margin-top: 0;
    padding: 2rem 1.35rem;
  }

  .Card .List.Ex {
    grid-template-columns: 1fr;
  }

  .Proof .Supertitle.Do {
    padding: 0 !important;
    text-align: left !important;
  }

  .Proof .Frame {
    order: 2;
  }

  .Proof .Supertitle.Do {
    order: 1;
  }

  .Proof .Frame,
  .Proof .MediaShell,
  .Proof .Sidebar,
  .Cta .Grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .Proof .Media {
    width: 100%;
    height: auto !important;
    aspect-ratio: 16 / 9;
  }

  .ProofTabs.Ex,
  .ProofTabs .Tab.Button,
  .Cta .Grid {
    grid-template-columns: 1fr;
  }

  .ProofTabs.Ex {
    display: grid;
    grid-template-columns: 48% 48%;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .ProofTabs .Tab.Button {
    min-height: 58px;
    padding: 0.65rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.18rem;
  }

  .ProofTabs .TabLogo {
    display: none !important;
  }

  .ProofTabs .Tab.Button span {
    font-size: clamp(0.78rem, 3.2vw, 0.95rem);
    letter-spacing: 0.18em;
  }

  .ProofTabs .Tab.Button em {
    font-size: clamp(0.66rem, 2.8vw, 0.82rem);
    line-height: 1.1;
    white-space: normal;
  }

  .Info.Fx {
    width: 100%;
    flex: none;
  }

  .Nodarama {
    padding: 0;
    gap: 0;
    background: #050505;
  }

  .Nodarama .ProofBlock-Dx1,
  .Nodarama .ProofBlock,
  .Nodarama .bkgrnd {
    width: 100% !important;
  }

  .Nodarama .ProofBlock-Dx1 {
    order: 1;
    min-height: 42svh;
    padding: 2rem var(--edge);
    background: #f8f9fa;
    color: #050505;
    box-shadow: none;
  }

  .Nodarama .ProofBlock-Dx1 .Title,
  .Nodarama .ProofBlock-Dx1 .Subtitle,
  .Nodarama .ProofBlock-Dx1 .Body {
    color: #050505;
    text-shadow: none;
  }

  .Nodarama .bkgrnd {
    order: 2;
    position: relative;
    inset: auto;
    z-index: 1;
    min-height: 56svh;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #050505;
    opacity: 1;
  }

  .Nodarama .ProofBlock {
    order: 3;
    min-height: 42svh;
    padding: 2rem var(--edge);
    background: #050505;
    color: #f8f9fa;
    box-shadow: none;
  }

  .Nodarama .Line {
    order: 4;
    padding: 1.25rem var(--edge);
    background: #050505;
  }

  .Cta .Grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    row-gap: 1rem;
  }

  .Cta .Button.Eo1,
  .Cta .Button.Eo3,
  .Cta .Form.Ex {
    grid-column: 1 / -1;
  }

  .Cta .Grid > .Button.Eo2:nth-of-type(3),
  .Cta .Grid > .Button.Eo2:nth-of-type(4) {
    grid-column: auto;
    min-height: 150px;
    margin: 0;
    padding: 2rem 1rem;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(15,15,15,0.8);
    border-color: var(--green);
    color: var(--green);
    box-shadow: inset 0 0 22px rgba(93,184,122,0.05);
    transform: none !important;
    gap: 0.55rem;
  }

  .Cta .Grid > .Button.Eo2:nth-of-type(3) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right-width: 0;
  }

  .Cta .Grid > .Button.Eo2:nth-of-type(4) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .Cta .Grid > .Button.Eo2:nth-of-type(3)::before {
    content: "NODARAMA VERBATIM";
    position: absolute;
    top: 1rem;
    left: 0;
    width: 200%;
    text-align: center;
    font-family: var(--font-label);
    font-size: clamp(0.72rem, 2.6vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--green);
    pointer-events: none;
  }

  .Cta .Grid > .Button.Eo2:nth-of-type(3)::after {
    content: "";
    position: absolute;
    top: 27%;
    right: 0;
    bottom: 14%;
    width: 1px;
    background: rgba(255,255,255,0.24);
    pointer-events: none;
  }

  .Cta .Grid > .Button.Eo2:nth-of-type(3) .Title,
  .Cta .Grid > .Button.Eo2:nth-of-type(4) .Title {
    margin-top: 1.75rem;
    font-size: 0;
    color: rgba(255,255,255,0.82);
    text-shadow: none;
  }

  .Cta .Grid > .Button.Eo2:nth-of-type(3) .Title::before {
    content: "EXPLORE";
    display: block;
    font-size: clamp(0.88rem, 3.8vw, 1.12rem);
    letter-spacing: 0.18em;
    line-height: 1.35;
  }

  .Cta .Grid > .Button.Eo2:nth-of-type(3) .Title::after {
    content: "CODING";
    display: block;
    font-size: clamp(0.88rem, 3.8vw, 1.12rem);
    letter-spacing: 0.18em;
    line-height: 1.35;
  }

  .Cta .Grid > .Button.Eo2:nth-of-type(4) .Title::before {
    content: "DOWNLOAD";
    display: block;
    font-size: clamp(0.88rem, 3.8vw, 1.12rem);
    letter-spacing: 0.18em;
    line-height: 1.35;
  }

  .Cta .Grid > .Button.Eo2:nth-of-type(4) .Title::after {
    content: "BETA";
    display: block;
    font-size: clamp(0.88rem, 3.8vw, 1.12rem);
    letter-spacing: 0.18em;
    line-height: 1.35;
  }

  .Cta .Grid > .Button.Eo2:nth-of-type(3) .Label,
  .Cta .Grid > .Button.Eo2:nth-of-type(4) .Label {
    display: none;
  }

  .Cta .Grid:has(.Button.Eo2:nth-of-type(3):hover),
  .Cta .Grid:has(.Button.Eo2:nth-of-type(4):hover),
  .Cta .Grid:has(.Button.Eo2:nth-of-type(3).is-hovering),
  .Cta .Grid:has(.Button.Eo2:nth-of-type(4).is-hovering) {
    transform: translateY(-4px) !important;
  }

  .Cta .Grid:has(.Button.Eo2:nth-of-type(3):hover) > .Button.Eo2:nth-of-type(3),
  .Cta .Grid:has(.Button.Eo2:nth-of-type(3):hover) > .Button.Eo2:nth-of-type(4),
  .Cta .Grid:has(.Button.Eo2:nth-of-type(4):hover) > .Button.Eo2:nth-of-type(3),
  .Cta .Grid:has(.Button.Eo2:nth-of-type(4):hover) > .Button.Eo2:nth-of-type(4),
  .Cta .Grid:has(.Button.Eo2:nth-of-type(3).is-hovering) > .Button.Eo2:nth-of-type(3),
  .Cta .Grid:has(.Button.Eo2:nth-of-type(3).is-hovering) > .Button.Eo2:nth-of-type(4),
  .Cta .Grid:has(.Button.Eo2:nth-of-type(4).is-hovering) > .Button.Eo2:nth-of-type(3),
  .Cta .Grid:has(.Button.Eo2:nth-of-type(4).is-hovering) > .Button.Eo2:nth-of-type(4) {
    background: rgba(25,25,25,0.9);
    border-color: rgba(255,255,255,0.94);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
  }

  .Cta .Grid:has(.Button.Eo2:nth-of-type(3):hover) > .Button.Eo2:nth-of-type(3)::before,
  .Cta .Grid:has(.Button.Eo2:nth-of-type(4):hover) > .Button.Eo2:nth-of-type(3)::before,
  .Cta .Grid:has(.Button.Eo2:nth-of-type(3).is-hovering) > .Button.Eo2:nth-of-type(3)::before,
  .Cta .Grid:has(.Button.Eo2:nth-of-type(4).is-hovering) > .Button.Eo2:nth-of-type(3)::before,
  .Cta .Grid:has(.Button.Eo2:nth-of-type(3):hover) > .Button.Eo2 .Title,
  .Cta .Grid:has(.Button.Eo2:nth-of-type(4):hover) > .Button.Eo2 .Title,
  .Cta .Grid:has(.Button.Eo2:nth-of-type(3).is-hovering) > .Button.Eo2 .Title,
  .Cta .Grid:has(.Button.Eo2:nth-of-type(4).is-hovering) > .Button.Eo2 .Title {
    color: rgba(35,35,35,0.95);
    text-shadow: none;
  }

  .Cta .Grid {
    transform: none !important;
  }

  .Cta-Box {
    min-height: 150px;
    padding: 2rem;
  }

  .Next.Do,
  .Top.Do {
    display: flex;
    width: 50px !important;
    height: 50px !important;
    margin: 2vh auto 0;
  }
}

/* Hide homepage floating scroll arrows */
.Next.Do,
.Top.Do {
  display: none !important;
}

/* CTA sizing/order cleanup */
@media (min-aspect-ratio: 1/1) {
  .Cta .Grid {
    top: 24%;
    height: 54%;
  }

  .Cta .Grid > .Button,
  .Cta .Form.Ex {
    min-height: 0;
    padding-top: 1.55rem;
    padding-bottom: 1.55rem;
  }
}

@media (max-aspect-ratio: 1/1) {
  .Cta .Grid {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
  }

  .Cta .Grid > .Button,
  .Cta .Grid > .SplitCta,
  .Cta .Form.Ex {
    width: 100% !important;
    min-height: 150px;
  }

  .Cta .Grid > .SplitCta {
    display: grid !important;
    grid-template-columns: 1fr 1px 1fr;
    grid-template-rows: auto 1fr;
  }
}
