
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --navy: #0f2044;
  --blue: #0066cc;
  --blue-light: #3a6aff;
  --gold: #8a6a2a;
  --muted: rgba(15,32,68,0.45);
  --line: rgba(15,32,68,0.09);
  --panel-bg: #f0f1f3;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Base State (Hidden) */
.connection {
  /* Positioning & Layout */
  position: absolute;
  top: 97%;
  left: 50%;
  transform: translateX(-50%) translateY(20px); /* Centers and sets up "fade up" */
  width: 90%;
  max-width: 500px;
  padding: 1.5rem 2rem;
  
  /* Modern Aesthetic: Glassmorphism */
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Typography */
  font-size: 1.1rem;
  line-height: 1.5;
      color: rgba(15, 32, 68, 0.6);
  text-align: center;

  /* State Handling */
  opacity: 0;
  visibility: hidden;
  transition: 
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.6s;
}

/* Active State (Visible) */
.connection.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.connection p {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ─── SCROLL REVEAL BASE ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.42s; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 56px;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.9);
  animation: navDrop 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes navDrop {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.nav-logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--navy);
}
.nav-logo span { color: var(--blue); }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--navy); }

.nav-btn {
  padding: 10px 26px;
  border: 1.5px solid var(--navy);
  border-radius: 3px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-btn:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }

/* hamburger — hidden by default */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 69px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 28px 32px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.35s;
}
.nav-drawer.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.nav-drawer a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
}
.nav-drawer .nav-btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 100px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,32,68,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0;
  animation: dotFadeIn 1.4s ease forwards 0.2s;
}
@keyframes dotFadeIn { to { opacity: 1; } }

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards 0.5s;
}
.eyebrow::before, .eyebrow::after { content: '—'; margin: 0 10px; opacity: 0.35; }

.hero-question {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 100px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
  color: #002d5b;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards 0.7s;
}
.hero-question em {
  font-style: italic;

}

/* your custom ORA colour class */
.text-omnora-grey { color:#666666 }

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards 0.9s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── LETTER BLOCKS ─── */
.letters-container {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 90px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 32px rgba(15,32,68,0.06);
}

.letter-block {
    
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 34px 22px;
  border-right: 1px solid var(--line);
  background: #fff;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.letter-block:last-child { border-right: none; }

.letter-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* 

.letter-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px rgba(15,32,68,0.1);
  z-index: 2;
  background: #fafbff;
}

.letter-block:hover .letter-char {
  /* -webkit-text-fill-color: transparent; */
  /* background: linear-gradient(135deg, var(--blue), var(--blue-light)); */
  /* -webkit-background-clip: text;
  background-clip: text;
} */
/*   */

/* .letter-block:hover .letter-meaning {
  opacity: 1;
  transform: translateY(0);
  max-height: 40px;
} */
/* .letter-block:hover .letter-dot {
  background: var(--blue);
  transform: scale(1.6);
  box-shadow: 0 0 8px rgba(0,102,204,0.4);
} */
/* .letter-block:hover::after { transform: scaleX(1); } */



/*click*/

.letter-block.click {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px rgba(15,32,68,0.1);
  z-index: 2;
  background: #fafbff;
}

.letter-block.click::after { transform: scaleX(1); }

.letter-block.click .letter-char {
  /* -webkit-text-fill-color: transparent; */
  /* background: linear-gradient(135deg, var(--blue), var(--blue-light)); */
  -webkit-background-clip: text;
  background-clip: text;
}
.letter-block.click .letter-meaning {
  opacity: 1;
  transform: translateY(0);
  max-height: 40px;
}
.letter-block.click .letter-dot {
  background: var(--blue);
  transform: scale(1.6);
  box-shadow: 0 0 8px rgba(0,102,204,0.4);
}


.letter-char {

  font-size: clamp(50px, 8vw, 100px);
  font-weight: 400;
  color: #002d5b;
  line-height: 1;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.letter-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(15,32,68,0.18);
  margin: 10px 0 8px;
  transition: all 0.4s;
}

.letter-meaning {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0;
  transform: translateY(8px);
  max-height: 0;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

/* ─── SCROLL HINT ─── */
.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.7s;
}
.scroll-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: linePulse 2.2s ease infinite;
}
@keyframes linePulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.35); opacity: 0.25; }
}

/* ─── SPLIT ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  border-top: 1px solid var(--line);
}

.split-panel {
  position: relative;
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--panel-bg);
  transition: background 0.5s;
}
.split-panel:first-child { border-right: 1px solid rgba(15,32,68,0.07); }
.split-panel:hover { background: #e5e7eb; }

.split-panel::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100px; height: 100px;
  border-right: 2px solid rgba(15,32,68,0.06);
  border-bottom: 2px solid rgba(15,32,68,0.06);
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1),
              height 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.5s;
}
.split-panel:hover::before {
  width: 180px; height: 180px;
  border-color: rgba(0,102,204,0.1);
}

.panel-number {

  font-size: 160px;
  font-weight: 300;
  color: rgba(15,32,68,0.04);
  position: absolute;
  top: 24px; right: 48px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.5s;
}
.split-panel:hover .panel-number { color: rgba(15,32,68,0.08); }

.panel-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.panel-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: #666666;
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.split-panel:hover .panel-tag::before { width: 52px; }

.panel-word {
  font-size: clamp(54px, 7vw, 90px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 26px;
  color: #002d5b;
}
.panel-word .highlight {
  display: block;
  font-style: italic;
  font-size: 0.5em;
  font-weight: 400;
  color: rgba(15,32,68,0.6);
  letter-spacing: 0;
  margin-top: 8px;

}

.panel-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(15,32,68,0.6);
  line-height: 1.9;
  max-width: 380px;
  margin-bottom: 32px;
  border-left: 2px solid rgba(15,32,68,0.1);
  padding-left: 20px;
  transition: border-color 0.4s;
}
.split-panel:hover .panel-desc { border-left-color: var(--blue); }
.panel-desc strong { color: var(--navy); font-weight: 600; }

.panel-tags { display: flex; gap: 8px; flex-wrap: wrap; transition: all 0.3s ease !important; }
.tag {
  padding: 5px 14px;
  border: 1px solid rgba(15,32,68,0.1);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.3s ease !important;
}
.tag:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,102,204,0.04); transition: all 0.3s ease !important; }

/* ─── COMBINED ─── */
.combined {
  position: relative;
  padding: 140px 80px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.combined-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(15,32,68,0.05);
  pointer-events: none;
}
.ring1 { width: 380px; height: 380px; animation: rPulse 5s ease infinite; }
.ring2 { width: 600px; height: 600px; animation: rPulse 5s ease infinite 0.8s; }
.ring3 { width: 820px; height: 820px; animation: rPulse 5s ease infinite 1.6s; }
@keyframes rPulse {
  0%,100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 0.1; transform: translate(-50%,-50%) scale(1.03); }
}

.combined-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.combined-quote {

  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--navy);
  max-width: 820px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 1;
}
.combined-quote em { font-style: italic; color: var(--gold); }

/* ─── PILLARS ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  max-width: 880px;
  margin: 0 auto 68px;
  position: relative;
  z-index: 1;
}

.pillar {
  background: #fff;
  padding: 44px 36px;
  text-align: center;
  transition: background 0.35s, transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  position: relative;
}
.pillar:hover {
  background: #f4f6fb;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(15,32,68,0.08);
  z-index: 2;
}

.pillar-icon {
  width: 42px; height: 42px;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  transition: border-color 0.3s, background 0.3s, transform 0.4s;
}
.pillar:hover .pillar-icon {
  border-color: var(--blue);
  background: rgba(0,102,204,0.05);
  transform: scale(1.1) rotate(5deg);
}

.pillar h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.pillar p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── CTA ─── */
.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-primary {
  padding: 16px 44px;
  background: var(--navy);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 6px 28px rgba(15,32,68,0.18);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(15,32,68,0.28);
}

.btn-secondary {
  padding: 16px 44px;
  border: 1.5px solid rgba(15,32,68,0.18);
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--navy);
  background: rgba(15,32,68,0.04);
  transform: translateY(-2px);
}

@media (max-width: 1087px) {
  .letter-meaning.image
  {
    position: relative;
    bottom: 6px !important;
  }
}

@media (max-width: 1024px) {
  nav { padding: 20px 32px; }

  .hero { padding: 120px 32px 80px; }
  
  /* .connection
  {
    bottom: 80px;
    width: 450px !important;
  } */

  /* .letters-container { margin-bottom: 60px; } */
  /* .letter-block { padding: 22px 22px 18px; } */

  .split { grid-template-columns: 1fr; min-height: auto; }
  .split-panel {
    padding: 72px 48px;
    border-right: none !important;
    border-bottom: 1px solid rgba(15,32,68,0.07);
  }
  /* on single column, slide both from bottom instead of sides */
  .reveal-left, .reveal-right {
    transform: translateY(40px);
  }
  .reveal-left.visible, .reveal-right.visible {
    transform: translateY(0);
  }

  .panel-number { font-size: 120px; right: 28px; top: 16px; }
  .panel-desc { max-width: 100%; }

  .combined { padding: 100px 48px; }
  .pillars { max-width: 100%; }

}

/* ── Mobile: max 767px ── */
@media (max-width: 767px) {

  .letter-meaning.image
  {
    position: relative;
    bottom: 3px !important;
  }
  .box2 .letter-char
  {
    position: relative;
    bottom: 5px !important;
  }
  .box2 .letter-dot
  {
    position: relative;
    bottom: 5px !important;
  }
  /* .connection
  {
    bottom: 190px;
    font-size: 14px;
    width: 450px !important;
  } */
  /* NAV */
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-btn.desktop-only { display: none; }
  .nav-hamburger { display: flex; }

  /* HERO */
  .hero {
    padding: 100px 20px 80px;
    min-height: 100svh;
  }
  .eyebrow { font-size: 9px; letter-spacing: 3px; margin-bottom: 20px; }
  .eyebrow::before, .eyebrow::after { display: none; }

  .hero-question {
    font-size: 45px;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  .hero-sub { font-size: 13px; margin-bottom: 40px; }

  /* LETTERS — 3×2 grid on mobile */
  /* .letters-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 4px;
    margin-bottom: 48px;
    width: 100%;
    max-width: 340px;
  } */
  /* .letter-block {
    padding: 16px 10px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  } */
  /* remove bottom border from last row */
  /* .letter-block:nth-child(4),
  .letter-block:nth-child(5),
  .letter-block:nth-child(6) { border-bottom: none; } */
  /* remove right border from every 3rd */
  /* .letter-block:nth-child(3),
  .letter-block:nth-child(6) { border-right: none; } */

  .letter-char { font-size: clamp(36px, 10vw, 52px); }

  /* always show meaning on mobile (no hover on touch) */
  /* .letter-meaning {
    opacity: 1;
    transform: translateY(0);
    max-height: 40px;
    font-size: 7px;
    letter-spacing: 1.5px;
  } */
  /* .letter-dot { margin: 6px 0 4px; } */

  /* disable lift on touch */
  .letter-block:hover { transform: none; box-shadow: none; }

  /* scroll hint hidden on mobile — not enough space */
  .scroll-hint { display: none; }

  /* SPLIT */
  .split { grid-template-columns: 1fr; }
  .split-panel {
    padding: 56px 24px;
    border-right: none !important;
    border-bottom: 1px solid rgba(15,32,68,0.07);
  }
  .split-panel:last-child { border-bottom: none; }
  .split-panel::before { display: none; } /* hide corner bracket on mobile */

  .panel-number { font-size: 90px; right: 16px; top: 12px; }
  .panel-tag { font-size: 9px; letter-spacing: 3px; margin-bottom: 16px; }
  .panel-word {
    font-size: clamp(44px, 14vw, 64px);
    letter-spacing: -1px;
    margin-bottom: 20px;
  }
  .panel-desc {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .panel-tags { gap: 6px; }
  .tag { font-size: 8px; letter-spacing: 2px; padding: 4px 10px; }

  /* COMBINED */
  .combined { padding: 72px 24px; }
  .combined-quote br { display: none; }
  .ring1 { width: 240px; height: 240px; }
  .ring2 { width: 360px; height: 360px; }
  .ring3 { width: 480px; height: 480px; }

  /* PILLARS — stack vertically */
  .pillars {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-bottom: 48px;
  }
  .pillar { padding: 36px 28px; }
  .pillar:hover { transform: none; } /* no lift on touch */

  /* CTA */
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .btn-primary, .btn-secondary {
    padding: 15px 28px;
    text-align: center;
  }


}

@media (max-width: 696px)
{
  /* .connection
  {
    bottom: 155px;
    width: 400px !important;

  } */
}

@media (max-width: 472px)
{
  /* .connection
  {
    bottom: 140px !important;
    width: 300px !important;

  } */
}

/* ── Small mobile: max 400px ── */
@media (max-width: 450px) {

  /* .connection
  {
    bottom: 140px !important;
    width: 300px !important;

  } */

  .letter-meaning {
    font-size: 7px;
    letter-spacing: 1.5px;
  }
  .hero-question {
    font-size: 65px ;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  .letters-container { max-width: 100%; }
  /* .letter-block { padding: 12px 6px 10px; } */
  .letter-char { font-size: 32px; }
}

@media (min-width: 450px) and (max-width: 767px) {
  .hero-question {
    font-size: 65px ;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  .letters-container { max-width: 100%; }
  /* .letter-block { padding: 12px 6px 10px; } */
  .letter-char { font-size: 32px; }
}

@media (max-width: 373px)
{
  /* .connection
  {
    bottom: 110px !important;
    width: 250px !important;

  } */
}
