/* ════════════════════════════════════════════
   GERALD IBEOKOYE — WEBSITE STYLES
   geraldibeokoye.com
════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --navy-deep: #02084B;
  --navy-deeper: #08022A;
  --vivid-blue: #042698;
  --navy: #000080;
  --yellow-soft: #FCF9DA;
  --yellow-warm: #E4E3D7;
  --powder-blue: #ACB4C8;
  --white: #ffffff;
  --off-white: #F8F7F2;

  --font-head: 'Fredoka', 'Poppins', sans-serif;
  --font-sub: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius: 4px;
  --transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;

  --nav-h: 72px;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy-deeper);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--navy-deeper);
}

::-webkit-scrollbar-thumb {
  background: var(--vivid-blue);
  border-radius: 2px;
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 60px);
  background: transparent;
  transition: background var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(8, 2, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(172, 180, 200, 0.12);
}

/* Logo */
.nav-logo a {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.logo-g {
  color: var(--yellow-soft);
  font-size: 1.8rem;
}

.logo-full {
  color: var(--white);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Menu button */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  padding: 8px 0;
  transition: opacity var(--transition-fast);
}

.menu-btn:hover {
  opacity: 0.7;
}

.menu-icon {
  width: 24px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--transition);
}

/* ════════════════════════════════════════════
   FULLSCREEN MENU
════════════════════════════════════════════ */
.fullmenu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-deep);
  transform: translateY(-100%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.fullmenu.open {
  transform: translateY(0);
}

.fullmenu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 clamp(24px, 6vw, 80px);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  flex-shrink: 0;
}

.close-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: opacity var(--transition-fast);
}

.close-btn:hover {
  opacity: 0.7;
}

.close-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.close-icon span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
}

.close-icon span:first-child {
  transform: rotate(45deg);
}

.close-icon span:last-child {
  transform: rotate(-45deg);
}

/* Menu nav */
.menu-nav {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.menu-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 480px;
}

.menu-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fullmenu.open .menu-item:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.fullmenu.open .menu-item:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

.fullmenu.open .menu-item:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}

.fullmenu.open .menu-item:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}

.menu-link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(172, 180, 200, 0.15);
  transition: border-color var(--transition-fast);
  group: true;
}

.menu-link:hover {
  border-color: var(--yellow-soft);
}

.menu-num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--powder-blue);
  letter-spacing: 0.08em;
  font-weight: 300;
  flex-shrink: 0;
}

.menu-label {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  flex: 1;
  transition: color var(--transition-fast);
  line-height: 1;
}

.menu-link:hover .menu-label {
  color: var(--yellow-soft);
}

.menu-arrow {
  font-size: 1.2rem;
  color: var(--powder-blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.menu-link:hover .menu-arrow {
  opacity: 1;
  transform: translateX(0);
}

.highlight-item .menu-link {
  border-color: rgba(252, 249, 218, 0.3);
}

.highlight-item .menu-label {
  color: var(--yellow-soft);
}

.highlight-item .menu-link:hover .menu-label {
  color: var(--white);
}

/* Side panels */
.side-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 100%;
  background: rgba(4, 38, 152, 0.2);
  border-left: 1px solid rgba(172, 180, 200, 0.15);
  padding: calc(var(--nav-h) + 40px) 40px 40px;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.side-panel.visible {
  transform: translateX(0);
}

.panel-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--yellow-soft);
  margin-bottom: 20px;
}

.panel-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--powder-blue);
  margin-bottom: 14px;
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}

.panel-tags span {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--yellow-soft);
  border: 1px solid rgba(252, 249, 218, 0.35);
  padding: 4px 10px;
  border-radius: 20px;
}

.panel-cta {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow-soft);
  letter-spacing: 0.04em;
  transition: opacity var(--transition-fast);
}

/* Panel back button — mobile only */
.panel-back-btn {
  display: none;
  width: 100%;
  padding: 20px 28px;
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--powder-blue);
  letter-spacing: 0.06em;
  text-align: left;
  background: rgba(172, 180, 200, 0.05);
  border-bottom: 1px solid rgba(172, 180, 200, 0.12);
  cursor: pointer;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.panel-back-btn:hover {
  color: var(--yellow-soft);
}

@media (max-width: 900px) {
  .panel-back-btn {
    display: block;
  }
}

.panel-cta:hover {
  opacity: 0.7;
}

.panel-services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.panel-services-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--powder-blue);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(172, 180, 200, 0.12);
}

.svc-num {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  color: var(--yellow-soft);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(172, 180, 200, 0.12);
  flex-shrink: 0;
}

.menu-footer p {
  font-size: 0.75rem;
  color: var(--powder-blue);
  letter-spacing: 0.04em;
}

.menu-footer-links {
  display: flex;
  gap: 20px;
}

.menu-footer-links a {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  color: var(--powder-blue);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.menu-footer-links a:hover {
  color: var(--yellow-soft);
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) clamp(24px, 6vw, 100px) 0;
  overflow: visible;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(4, 38, 152, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(2, 8, 75, 0.6) 0%, transparent 60%),
    var(--navy-deeper);
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(172, 180, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(172, 180, 200, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--powder-blue);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--transition) forwards;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow-soft);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-headline .line-1 {
  display: block;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s 0.45s var(--transition) forwards;
}

.hero-headline .line-2 {
  display: block;
  color: var(--yellow-soft);
  opacity: 0;
  animation: fadeUp 0.8s 0.55s var(--transition) forwards;
}

.hero-headline .line-3 {
  display: block;
  color: var(--powder-blue);
  opacity: 0;
  animation: fadeUp 0.8s 0.65s var(--transition) forwards;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(172, 180, 200, 0.8);
  line-height: 1.6;
  margin-bottom: 44px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s var(--transition) forwards;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 1;
  margin-bottom: 80px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Diamond frame */
.diamond-frame-wrap {
  position: absolute;
  right: clamp(40px, 6vw, 100px);
  top: var(--nav-h);
  bottom: 0;
  width: clamp(280px, 38vw, 520px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.diamond-frame {
  width: 100%;
  height: 90%;
  transform: none;
  overflow: hidden;
  border: none;
  box-shadow: none;
  border-radius: 0;
  position: relative;
  background: transparent;
}

.diamond-inner {
  position: absolute;
  inset: 0;
  transform: none;
  overflow: hidden;
}

.diamond-placeholder {
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond-placeholder img,
.diamond-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* To add your photo: replace .diamond-placeholder with:
   <img src="your-photo.jpg" alt="Gerald Ibeokoye" style="width:100%;height:100%;object-fit:cover;" /> */
.initials {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--yellow-soft);
  transform: rotate(45deg);
}

.diamond-label {
  margin-top: 14px;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--powder-blue);
  text-transform: uppercase;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 50;
  opacity: 1;
  pointer-events: none;
}

.hero-scroll-hint span {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--powder-blue);
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--powder-blue), transparent);
  animation: scrollLine 2s 1.5s infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Ecosystem tabs */
.ecosystem-tabs {
  position: absolute;
  bottom: 8px;
  right: clamp(24px, 8vw, 100px);
  display: flex;
  gap: 24px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s var(--transition) forwards;
}

.eco-tab {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--powder-blue);
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.eco-tab:hover {
  color: var(--yellow-soft);
  border-color: var(--yellow-soft);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-soft);
  color: var(--navy-deeper);
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(252, 249, 218, 0.2);
}

.btn-primary.large {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--powder-blue);
  border: 1px solid rgba(172, 180, 200, 0.3);
  padding: 14px 24px;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.btn-ghost:hover {
  color: var(--yellow-soft);
  border-color: rgba(252, 249, 218, 0.5);
}

/* ════════════════════════════════════════════
   SECTIONS — SHARED
════════════════════════════════════════════ */
.section-tag {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--powder-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--powder-blue);
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

/* ════════════════════════════════════════════
   PAIN SECTION
════════════════════════════════════════════ */
.pain-section {
  padding: 60px clamp(24px, 6vw, 100px);
  background: var(--navy-deeper);
  border-top: 1px solid rgba(172, 180, 200, 0.08);
}

.pain-section .section-tag {
  margin-bottom: 20px;
}

.pain-section .section-headline {
  max-width: 640px;
  margin-bottom: 36px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.pain-card {
  padding: 28px 32px;
  background: rgba(172, 180, 200, 0.03);
  border: 1px solid rgba(172, 180, 200, 0.08);
  position: relative;
  overflow: hidden;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--yellow-soft);
  transition: height 0.4s ease;
}

.pain-card:hover {
  background: rgba(4, 38, 152, 0.15);
  border-color: rgba(172, 180, 200, 0.16);
}

.pain-card:hover::before {
  height: 100%;
}

.pain-card h3 {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--yellow-warm);
  margin-bottom: 12px;
  line-height: 1.35;
}

.pain-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--powder-blue);
  line-height: 1.7;
}

/* Pain section responsive */
@media (max-width: 700px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    padding: 36px 28px;
  }
}

/* ════════════════════════════════════════════
   DIAGNOSIS
════════════════════════════════════════════ */
.section-diagnosis {
  padding: 120px clamp(24px, 6vw, 100px);
  background: var(--navy-deep);
  text-align: center;
  max-width: 100%;
}

.section-diagnosis .section-tag {
  justify-content: center;
}

.section-diagnosis .section-tag::before {
  display: none;
}

.section-diagnosis .section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--powder-blue);
  max-width: 520px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.diag-card {
  background: rgba(172, 180, 200, 0.05);
  border: 1px solid rgba(172, 180, 200, 0.1);
  padding: 40px 28px;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  text-align: left;
}

.diag-card:hover {
  background: rgba(4, 38, 152, 0.2);
  border-color: rgba(252, 249, 218, 0.2);
}

.diag-card.featured {
  background: rgba(4, 38, 152, 0.25);
  border-color: rgba(252, 249, 218, 0.25);
}

.diag-icon {
  font-size: 1.5rem;
  color: var(--yellow-soft);
  margin-bottom: 16px;
}

.diag-card h3 {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.diag-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--powder-blue);
  line-height: 1.65;
}

.diagnosis-cta {
  margin-top: 40px;
}

/* ════════════════════════════════════════════
   APPROACH
════════════════════════════════════════════ */
.section-approach {
  padding: 120px clamp(24px, 6vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  background: var(--navy-deeper);
  max-width: 100%;
  width: 100%;
}

.approach-left p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--powder-blue);
  line-height: 1.75;
  margin-bottom: 36px;
}

.approach-left em {
  color: var(--yellow-soft);
  font-style: normal;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(172, 180, 200, 0.1);
  transition: background var(--transition-fast);
}

.step:hover {
  background: rgba(4, 38, 152, 0.08);
}

.step-num {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow-soft);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 28px;
}

.step-body h4 {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.step-body p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--powder-blue);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   TOOLS
════════════════════════════════════════════ */
.section-tools {
  padding: 80px 0;
  background: var(--vivid-blue);
  overflow: hidden;
  text-align: center;
}

.section-tools .section-headline {
  margin-bottom: 40px;
  padding: 0 clamp(24px, 6vw, 100px);
}

.section-tools .section-tag {
  justify-content: center;
  padding: 0 clamp(24px, 6vw, 100px);
}

.section-tools .section-tag::before {
  display: none;
}

.tools-marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
}

.tools-marquee {
  display: inline-flex;
  gap: 20px;
  animation: marquee 20s linear infinite;
  padding: 16px 0;
}

.tools-marquee span {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(252, 249, 218, 0.85);
  letter-spacing: 0.06em;
}

.tools-marquee span:nth-child(even) {
  color: rgba(172, 180, 200, 0.5);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════════════════
   CONNECT
════════════════════════════════════════════ */
.section-connect {
  padding: 120px clamp(24px, 6vw, 100px);
  background: var(--navy-deeper);
  width: 100%;
}

.connect-inner {
  max-width: 860px;
  width: 100%;
}

.connect-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 48px 0 56px;
}

.connect-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(172, 180, 200, 0.12);
  transition: border-color var(--transition-fast);
}

.connect-item:hover {
  border-color: rgba(252, 249, 218, 0.35);
}

.ci-label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--powder-blue);
  text-transform: uppercase;
  min-width: 80px;
}

.ci-val {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.connect-item:hover .ci-val {
  color: var(--yellow-soft);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(172, 180, 200, 0.1);
  padding: 48px clamp(24px, 6vw, 100px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--yellow-soft);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-sub);
  font-size: 0.82rem;
  color: var(--powder-blue);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--yellow-soft);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(172, 180, 200, 0.5);
  width: 100%;
  text-align: center;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    min-height: 100vh;
    padding-bottom: 100px;
    align-items: flex-start;
    overflow: hidden;
  }

  .hero-content {
    max-width: 100%;
    position: relative;
    z-index: 3;
  }

  .diamond-frame-wrap {
    position: absolute;
    right: 0;
    top: var(--nav-h);
    bottom: 0;
    width: 45vw;
    opacity: 0.35;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .diamond-frame {
    width: 100%;
    height: 85%;
  }

  .section-approach {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .side-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 0;
    transform: translateX(100%);
    z-index: 400;
    background: var(--navy-deep);
    border-left: none;
    display: flex;
    flex-direction: column;
  }

  .side-panel.visible {
    transform: translateX(0);
  }

  .panel-content {
    padding: 28px 28px 60px;
    flex: 1;
    overflow-y: auto;
    margin-top: 0;
  }

  .ecosystem-tabs {
    display: none;
  }
}

@media (max-width: 600px) {
  .diamond-frame-wrap {
    width: 50vw;
    opacity: 0.25;
  }

  .diagnosis-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .connect-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ════════════════════════════════════════════
   SOCIAL ICONS
════════════════════════════════════════════ */
.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(172, 180, 200, 0.25);
  border-radius: 50%;
  color: var(--powder-blue);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.social-icon:hover {
  color: var(--yellow-soft);
  border-color: var(--yellow-soft);
  background: rgba(252, 249, 218, 0.06);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Footer social row */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Connect section social row */
.connect-social-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(172, 180, 200, 0.12);
}

.connect-social-label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--powder-blue);
  text-transform: uppercase;
  min-width: 80px;
}

/* ─── HERO VISIBILITY FIX ─── */
.hero-tag,
.hero-headline .line-1,
.hero-headline .line-2,
.hero-headline .line-3,
.hero-sub,
.hero-cta-row,
.diamond-frame-wrap,
.hero-scroll-hint,
.ecosystem-tabs {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
