/* ============================================================
   RYOMA.AI — Shared Stylesheet
   Design System: Blue #146AE1 | Navy #1E1B39
   Fonts: Inter (display + body) · JetBrains Mono (code)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --blue:        #146AE1;
  --blue-dark:   #0F56C0;
  --blue-light:  #EBF2FD;
  --navy:        #1E1B39;
  --navy-80:     rgba(30, 27, 57, 0.8);
  --navy-10:     rgba(30, 27, 57, 0.08);
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --gray-100:    #F1F3F8;
  --gray-200:    #E2E6EF;
  --gray-400:    #9AA4BB;
  --gray-600:    #5A6480;
  --gray-800:    #2E3550;
  --text:        #1E1B39;
  --text-muted:  #5A6480;

  --font-display: 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 1px 3px rgba(30,27,57,0.08), 0 1px 2px rgba(30,27,57,0.06);
  --shadow-md:   0 4px 16px rgba(30,27,57,0.10), 0 2px 6px rgba(30,27,57,0.07);
  --shadow-lg:   0 12px 40px rgba(30,27,57,0.14);
  --shadow-card: 0 2px 12px rgba(30,27,57,0.08), 0 1px 4px rgba(30,27,57,0.05);

  --transition:  0.2s ease;
  --max-w:       1280px;

  /* Hero / section gradient */
  --gradient-hero: linear-gradient(160deg, #F8FAFC 0%, #EFF6FF 60%, #DBEAFE 100%);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.75rem, 5.5vw, 4.25rem); font-weight: 800; }
h2 { font-size: clamp(1.875rem, 3.6vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.01em; }
p  { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.7; }

/* Eyebrow — plain uppercase label used in most sections */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

/* Eyebrow badge — pill with dot, used in hero */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 106, 225, 0.1);
  border: 1px solid rgba(20, 106, 225, 0.2);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.eyebrow-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--alt { background: var(--off-white); }
.section--gradient { background: #EFF6FF; }
.section--dark { background: var(--navy); }
.section--blue { background: var(--blue); }

.text-center { text-align: center; }
.section-header { max-width: 720px; }
.section-header--center { margin-inline: auto; text-align: center; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.125rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn:disabled, .btn[disabled] {
  background: var(--gray-200);
  border-color: var(--gray-200);
  color: var(--gray-400);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

/* Primary — blue filled */
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(20,106,225,0.35);
}

/* White — for use on blue/dark backgrounds */
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Outline blue — thin border, soft blue hover fill */
.btn--outline {
  background: transparent;
  color: var(--blue);
  border-width: 1px;
  border-color: rgba(20,106,225,0.25);
}
.btn--outline:hover {
  background: rgba(20,106,225,0.10);
  border-color: rgba(20,106,225,0.25);
  box-shadow: 0 4px 16px rgba(20,106,225,0.15);
}

/* Outline white — for use on blue/dark backgrounds */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-width: 1px;
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* Sizes */
.btn--lg { font-size: 1rem; padding: 0.9375rem 2.25rem; }
.btn--sm { font-size: 0.8125rem; padding: 0.5rem 1.25rem; }

/* Ghost link style */
.btn--link {
  background: none;
  border-color: transparent;
  color: var(--blue);
  padding-inline: 0;
}
.btn--link:hover { background: none; text-decoration: underline; transform: none; }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,250,252,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20,106,225,0.07);
  box-shadow: none;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
}
.nav__logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.nav .nav__logo-img { height: 36px; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.nav__logo-text span { color: var(--blue); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.nav__links a:hover,
.nav__links a.active {
  background: var(--blue-light);
  color: var(--blue);
  opacity: 1;
}
.nav__cta { flex-shrink: 0; }

/* Language toggle — grey segmented pill */
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1.5px solid var(--gray-200);
  border-radius: 9999px;
  padding: 3px;
  flex-shrink: 0;
}
.nav__lang a {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.9rem;
  color: var(--gray-600);
  text-decoration: none;
  line-height: 1;
  border-radius: 9999px;
  transition: background var(--transition), color var(--transition);
}
.nav__lang a.active { background: var(--gray-200); color: var(--gray-800); }
.nav__lang a:not(.active):hover { background: var(--gray-100); color: var(--gray-800); opacity: 1; }
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  /* Top bar shows logo + hamburger only */
  .nav__links, .nav__lang, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Open: stack links, language toggle, and CTA in the dropdown */
  .nav.open { background: var(--white); box-shadow: var(--shadow-md); }
  .nav.open .nav__inner { flex-wrap: wrap; height: auto; row-gap: 0; padding-bottom: 1rem; }
  /* Keep the logo/hamburger row at the original nav height */
  .nav.open .nav__logo { height: 72px; }

  .nav.open .nav__inner::before {
    content: '';
    order: 2;
    flex-basis: 100%;
    height: 1px;
    background: var(--gray-200);
    margin-top: 0;
  }

  .nav.open .nav__lang {
    display: inline-flex;
    order: 3;
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    order: 4;
    flex-basis: 100%;
    width: 100%;
    gap: 0.875rem;
  }
  .nav.open .nav__links a { width: 100%; }

  .nav.open .nav__cta {
    display: block;
    order: 5;
    flex-basis: 100%;
    width: 100%;
    margin-top: 1.5rem;
  }
  .nav.open .nav__cta .btn { width: 100%; justify-content: center; }
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(3.5rem, 6vw, 5.5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem 3rem;
  margin-bottom: 3rem;
}
.footer__brand .nav__logo-text { color: var(--white); }
.footer__tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 0.875rem;
  line-height: 1.6;
  max-width: 240px;
}
.footer__col h4 {
  color: rgba(255,255,255,0.4);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  padding-block: 0.35rem;
  transition: color var(--transition);
  text-decoration: none;
}
.footer__col a:hover { color: var(--white); opacity: 1; }

/* Icon buttons in GET IN TOUCH column */
.footer__icon-btns {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer__icon-btns .footer__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.footer__icon-btn:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  opacity: 1;
}
.footer__col .footer__sub-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  line-height: 1.55;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer__legal a:hover { color: rgba(255,255,255,0.65); opacity: 1; }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--gradient-hero);
  padding-block: clamp(2.5rem, 4vw, 4rem) clamp(2.75rem, 4.5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
/* Hero decorative layers — dot grid + soft blue glows */
.hero__decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero__dots {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(20,106,225,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__glow--tr {
  width: 600px; height: 600px; top: 25%; right: 25%;
  background: radial-gradient(circle, rgba(20,106,225,0.10) 0%, transparent 70%);
}
.hero__glow--bl {
  width: 400px; height: 400px; bottom: 0; left: 0;
  background: radial-gradient(circle, rgba(20,106,225,0.06) 0%, transparent 70%);
}

.hero__content { position: relative; z-index: 1; }
.hero__content h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero__content h1 span { color: var(--blue); }
.hero__content .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: nowrap; align-items: center; }

/* Hero visual — white card */
.hero__visual {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,27,57,0.18), 0 4px 16px rgba(30,27,57,0.1);
  background: var(--white);
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

/* ── Hero stat bar ───────────────────────────────────────── */
.hero-stats {
  background: var(--blue);
  padding-block: 1.75rem;
}
.hero-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 860px;
  margin-inline: auto;
}
.hero-stat {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  padding: 1.125rem 1.5rem;
  text-align: center;
}
.hero-stat__value {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}
.hero-stat__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(30,27,57,0.07);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
  flex-shrink: 0;
}
.card h3 { font-size: 1.1875rem; margin-bottom: 0.5rem; }
.card p  { font-size: 1rem; }

/* Flat card variant — tinted tile w/ subtle border (industry crisis) */
.card--flat {
  background: #F4F6FA;
  border: 1px solid rgba(20,106,225,0.07);
  box-shadow: none;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}
.card--flat:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(30,27,57,0.12);
}
/* Blue tint — column 2 cards, for visual interest */
.card--blue { background: #EFF5FD; }

/* Solid icon chips — alternating blue / navy with white glyph */
.card__icon--solid { color: var(--white); border-radius: 14px; }
.card__icon--blue  { background: var(--blue); }
.card__icon--navy  { background: var(--navy); }

/* ── Grid patterns ─────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ── Stat callout ────────────────────────────────────────── */
.stat-callout {
  text-align: left;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--blue-light);
  border: 1px solid rgba(20,106,225,0.12);
  border-radius: var(--radius-xl);
}
.stat-callout__number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  display: block;
}
.stat-callout__label {
  font-size: 1.0625rem;
  color: var(--navy);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ── Solution 2-col layout ───────────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.solution-left .stat-callout {
  margin-top: 2rem;
}
.solution-steps { display: flex; flex-direction: column; gap: 1rem; }
.solution-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(30,27,57,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.solution-step__num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  flex-shrink: 0;
}
.solution-step__content h4 { margin-bottom: 0.35rem; font-size: 1.1875rem; }
.solution-step__content p { font-size: 1rem; margin: 0; }

@media (max-width: 900px) {
  .solution-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Challenge 2-col layout ─────────────────────────────── */
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.challenge-quote {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.challenge-quote__mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--blue);
  line-height: 0.8;
  margin-bottom: 1rem;
  display: block;
}
.challenge-quote p {
  color: var(--navy);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.65;
}
.challenge-quote__source {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}
.challenge-quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.challenge-quote__name { font-weight: 600; font-size: 0.875rem; color: var(--navy); }
.challenge-quote__role { font-size: 0.8125rem; color: var(--gray-400); }

@media (max-width: 860px) {
  .challenge-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Pull quote (legacy — used in older dark bg sections) ── */
.pull-quote {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
}
.pull-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--blue);
  position: absolute;
  top: -1rem;
  left: 2rem;
  line-height: 1;
}
.pull-quote p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  padding-block: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.cta-banner h2 { color: var(--white); font-size: clamp(2.25rem, 4.2vw, 3.25rem); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.8); font-size: 1.3125rem; line-height: 1.6; margin-bottom: 2.25rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Two-col capability list ─────────────────────────────── */
.cap-list { display: flex; flex-direction: column; gap: 0; }
.cap-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.cap-item:first-child { border-top: 1px solid var(--gray-200); }
.cap-item__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--navy);
}
.cap-item p { font-size: 0.9375rem; margin: 0; }

@media (max-width: 700px) {
  .cap-item { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ── Steps ───────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 2rem; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step h3 { margin-bottom: 0.375rem; }
.step p  { margin: 0; font-size: 0.9375rem; }

/* ── Accordion (Leadership Principles) ───────────────────── */
.accordion { border-top: 1px solid var(--gray-200); }
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.accordion-btn:hover { color: var(--blue); }
.accordion-btn svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--blue);
}
.accordion-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.accordion-panel p {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
}

/* ── Team bios ───────────────────────────────────────────── */
.bio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(30,27,57,0.07);
  box-shadow: var(--shadow-card);
}
.bio-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 3px solid var(--gray-200);
  margin-bottom: 1.25rem;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
}
.bio-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}
.bio-card__title {
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 1rem;
}
.bio-card p { font-size: 0.9375rem; }

/* ── Tech pillars ────────────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pillar {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
}
.pillar h4 { margin-bottom: 0.5rem; }
.pillar p  { font-size: 0.9375rem; }

@media (max-width: 680px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* ── Contact form ────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20,106,225,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6480' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-optional { font-size: 0.8125rem; color: var(--gray-400); font-weight: 400; margin-left: 0.25rem; }

/* Inline validation */
.field-error { display: block; color: #DC2626; font-size: 0.8125rem; margin-top: 0.35rem; }
.field-error:empty { display: none; }
.form-group input.invalid,
.form-group textarea.invalid { border-color: #DC2626; }
.form-group input.invalid:focus,
.form-group textarea.invalid:focus { border-color: #DC2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.12); }

/* Honeypot (spam trap — hidden off-screen) */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Character counter */
.char-counter { display: block; text-align: right; font-size: 0.75rem; color: var(--gray-400); margin-top: 0.35rem; }

/* Consent checkbox */
.form-consent { margin-bottom: 1.5rem; }
.consent-label {
  display: flex; gap: 0.625rem; align-items: flex-start;
  font-size: 0.875rem; color: var(--text-muted); font-weight: 400;
  cursor: pointer; line-height: 1.5;
}
.consent-label input {
  width: 18px; height: 18px; margin-top: 0.1rem; flex-shrink: 0;
  accent-color: var(--blue); cursor: pointer;
}
.consent-label a { color: var(--blue); font-weight: 600; }
.consent-label.invalid { color: #DC2626; }
.consent-label.invalid input { outline: 2px solid #DC2626; outline-offset: 1px; border-radius: 3px; }

/* ════════════════ LEGAL PAGES ════════════════ */
.legal { max-width: 760px; }
.legal__updated { font-size: 0.875rem; color: var(--gray-400); margin-bottom: 2.5rem; }
.legal h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  margin-top: 2.75rem;
  margin-bottom: 0.875rem;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.125rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.legal p { margin-bottom: 1.125rem; }
.legal ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.legal ul li { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.65; }
.legal ul li::marker { color: var(--blue); }
.legal a { color: var(--blue); font-weight: 500; }

.legal-note {
  background: rgba(20,106,225,0.06);
  border: 1px solid rgba(20,106,225,0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-top: 3rem;
}
.legal-note p { margin: 0; font-size: 0.9375rem; color: var(--gray-800); line-height: 1.65; }

/* ── Gap list (challenge section bullets) ────────────────── */
.gap-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.25rem 0; }
.gap-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(20,106,225,0.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
}
.gap-item strong { color: var(--navy); display: block; margin-bottom: 0.2rem; }
.gap-item p { color: var(--text-muted); margin: 0; font-size: 0.9rem; }

/* ── Challenge section v2 (text + personas) ──────────────── */
.challenge2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.challenge2-left > p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* "Standard digital tools widen this gap" card */
.gap-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}
.gap-card__label {
  display: block;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.gap-row {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 0.625rem 0;
}
.gap-row + .gap-row { border-top: 1px solid var(--gray-100); }
.gap-pill {
  background: rgba(20, 106, 225, 0.1);
  color: var(--blue);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.gap-row p { margin: 0; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.5; }

/* "Customers Disengage" callout */
.disengage-card {
  background: rgba(20, 106, 225, 0.10);
  border: 1px solid rgba(20, 106, 225, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.disengage-card h3 {
  color: var(--blue);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.625rem;
}
.disengage-card p { color: var(--gray-800); font-size: 0.9375rem; margin: 0; line-height: 1.6; }

/* Persona testimonial cards */
.persona-list { display: flex; flex-direction: column; gap: 1.25rem; }
.persona-card {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(30, 27, 57, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.persona-card__photo {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), #4A8FEF);
  display: flex;
  align-items: center;
  justify-content: center;
}
.persona-card__initials {
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0;
}
.persona-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.persona-card__quote {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 0.625rem;
}
.persona-card__name { font-weight: 700; font-size: 0.875rem; color: var(--navy); }
.persona-card__meta { font-size: 0.8125rem; color: var(--gray-400); margin: 0; }

@media (max-width: 900px) {
  .challenge2-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding-block: clamp(3.25rem, 5.5vw, 5.5rem) clamp(2.5rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 100% 50%, rgba(20,106,225,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 1; max-width: 768px; }
.page-hero h1 { color: var(--white); font-size: clamp(2.25rem, 4.5vw, 3.5rem); margin-bottom: 1.25rem; }
.page-hero .lead { color: rgba(255,255,255,0.75); font-size: 1.125rem; }

/* Light page hero (inner pages) — matches the home hero exactly:
   gradient base + subtle dot grid + soft blue glow */
.page-hero--light { background: var(--gradient-hero); }
.page-hero--light::before {
  display: block;
  background: radial-gradient(circle, rgba(20,106,225,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
}
.page-hero--light::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,106,225,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero--light h1 { color: var(--navy); }
.page-hero--light .lead { color: var(--text-muted); }
.page-hero--light .eyebrow { color: var(--blue); }

/* ── Placeholder page ────────────────────────────────────── */
.placeholder-section {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.placeholder-section svg { color: var(--blue); margin-bottom: 1.5rem; }
.placeholder-section h2 { margin-bottom: 0.75rem; }
.placeholder-section p  { max-width: 480px; margin-bottom: 2rem; }

/* ── Utilities ───────────────────────────────────────────── */
.mt-sm { margin-top: 0.5rem; }
.mt-md { margin-top: 1rem; }
.mt-lg { margin-top: 2rem; }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1rem; }
.mb-lg { margin-bottom: 2rem; }
.text-white { color: var(--white) !important; }
.text-blue  { color: var(--blue) !important; }
.link-arrow::after { content: ' →'; }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--gray-200);
  margin-block: 2rem;
}

/* ── About: bio photo avatars ────────────────────────────── */
.bio-card__avatar { position: relative; }
.bio-card__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── About: founder feature (Sakamoto Ryoma) ─────────────── */
.founder {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.founder__portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  background: var(--navy);
}
.founder__portrait img { width: 100%; height: auto; display: block; }
.founder__kanji {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.founder__quote {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--navy);
  font-style: italic;
  border-left: 3px solid var(--blue);
  padding-left: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.founder__timeline { display: flex; flex-direction: column; gap: 1.125rem; }
.timeline-row { display: grid; grid-template-columns: 60px 1fr; gap: 1.25rem; align-items: start; }
.timeline-row__year { font-weight: 800; color: var(--blue); font-size: 1rem; letter-spacing: -0.01em; }
.timeline-row__text { font-size: 0.9375rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

@media (max-width: 820px) {
  .founder { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── About: team role tiles ──────────────────────────────── */
.team-tile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.team-tile h4 { margin-bottom: 0.35rem; }
.team-tile p { font-size: 0.8125rem; color: var(--blue); font-weight: 600; margin: 0; }

/* ── Contact: process steps ──────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.process-step { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: start; }
.process-step__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.process-step p { margin: 0; font-size: 0.9375rem; }

/* ── Contact: method blocks ──────────────────────────────── */
.contact-method { padding: 1.25rem 0; border-top: 1px solid var(--gray-200); }
.contact-method:first-child { border-top: none; padding-top: 0; }
.contact-method__label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.4rem;
}
.contact-method p { margin: 0 0 0.25rem; font-size: 0.9rem; }
.contact-method a { font-weight: 600; }

/* ── Contact: role radio cards ───────────────────────────── */
.role-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 0.5rem; }
.role-card {
  position: relative;
  display: block;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.875rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.role-card input { position: absolute; opacity: 0; pointer-events: none; }
.role-card__head { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; }
.role-card__icon { color: var(--gray-400); display: flex; flex-shrink: 0; }
.role-card__title { font-weight: 600; font-size: 0.875rem; color: var(--navy); }
.role-card__desc { font-size: 0.8125rem; color: var(--text-muted); display: block; line-height: 1.4; }
.role-card:hover { border-color: rgba(20,106,225,0.4); }
.role-card:has(input:checked) { border-color: var(--blue); background: rgba(20,106,225,0.06); }
.role-card:has(input:checked) .role-card__icon { color: var(--blue); }
.role-hint { font-size: 0.8125rem; color: var(--gray-400); margin-bottom: 1.5rem; }

/* Contact: info card icon */
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
@media (max-width: 560px) { .role-options { grid-template-columns: 1fr; } }

/* ── Contact: two-column layout ──────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3.5rem; align-items: start; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-card);
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ════════════════ PLATFORM PAGE ════════════════ */
.section--tint { background: #EFF5FD; }

/* Overview: text + diagram */
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.overview-diagram img { width: 100%; display: block; }
@media (max-width: 900px) { .overview-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Capabilities: icon rows inside a card */
.cap-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 0 clamp(1.25rem, 3vw, 2.25rem);
}
.cap-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  align-items: start;
  border-top: 1px solid var(--gray-200);
}
.cap-row:first-child { border-top: none; }
.cap-row__head { display: flex; gap: 0.875rem; align-items: flex-start; }
.cap-row__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cap-row__name { font-weight: 700; font-size: 1rem; color: var(--navy); line-height: 1.3; }
.cap-row p { font-size: 1rem; margin: 0; }
@media (max-width: 760px) { .cap-row { grid-template-columns: 1fr; gap: 0.875rem; } }

/* Solid blue feature card (Model Agnostic) */
.card--solid-blue { background: var(--blue); border: none; box-shadow: none; }
.card--solid-blue:hover { box-shadow: none; transform: none; }
.card--solid-blue h4 { color: var(--white); }
.card--solid-blue p { color: rgba(255,255,255,0.9); }
.card--solid-blue .card__icon { background: rgba(255,255,255,0.18); color: var(--white); }

/* Partnership phase cards */
.phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.phase-card {
  background: #F4F6FA;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.phase-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.phase-card__label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.4rem;
}
.phase-card h3 { font-size: 1.25rem; margin-bottom: 0.625rem; }
.phase-card p { font-size: 0.9375rem; margin: 0; }
.phase-card--featured { background: var(--blue); border-color: var(--blue); }
.phase-card--featured .phase-card__icon { background: rgba(255,255,255,0.18); color: var(--white); }
.phase-card--featured .phase-card__label { color: rgba(255,255,255,0.8); }
.phase-card--featured h3 { color: var(--white); }
.phase-card--featured p { color: rgba(255,255,255,0.9); }
@media (max-width: 860px) { .phase-grid { grid-template-columns: 1fr; } }

/* Analytics: text + dashboard */
.analytics-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin: 1.5rem 0 2rem; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 1rem; color: var(--navy); }
.check-list li::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 0.5rem; }
.dash-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); background: var(--white); }
.dash-frame img { width: 100%; display: block; }
@media (max-width: 900px) { .analytics-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Dashboard mock (fallback if screenshot not supplied) */
.dash-mock { padding: 0.875rem; background: var(--white); }
.dash-mock__bar { display: flex; gap: 0.4rem; padding: 0 0 0.75rem; }
.dash-mock__bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--gray-200); }
.dash-mock__tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-bottom: 0.625rem; }
.dash-tile { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 0.6rem 0.7rem; }
.dash-tile b { display: block; font-size: 1.0625rem; color: var(--navy); font-weight: 800; letter-spacing: -0.02em; }
.dash-tile small { font-size: 0.625rem; color: var(--gray-400); }
.dash-mock__charts { display: grid; grid-template-columns: 1.5fr 1fr; gap: 0.5rem; }
.dash-panel { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 0.7rem; }
.dash-panel h5 { font-size: 0.6875rem; color: var(--gray-600); margin-bottom: 0.5rem; font-weight: 600; }

/* ════════════════ ABOUT PAGE ════════════════ */
/* Founder feature + Where We Come From (2-col) */
.founder2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.founder-card {
  background: #EFF5FD;
  border: 1px solid rgba(20,106,225,0.12);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.founder-card__head { display: flex; gap: 1.25rem; align-items: center; margin-bottom: 1.5rem; }
.founder-card__portrait {
  width: 88px; height: 108px;
  border-radius: 10px; overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--gray-200);
}
.founder-card__portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-card__kanji { font-size: clamp(3.25rem, 6.5vw, 5.625rem); font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 0.5rem; }
.founder-card__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.founder-card__quote {
  font-style: italic; color: var(--navy); font-size: 1rem; line-height: 1.6;
  border-left: 3px solid var(--blue); padding-left: 1.25rem; margin-bottom: 1.5rem;
}
@media (max-width: 900px) { .founder2-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Leadership bio card — horizontal header */
.bio-card__head { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.25rem; }
.bio-card__head .bio-card__avatar { width: 80px; height: 80px; margin-bottom: 0; }

/* Team section (2-col, tiles w/ icon + featured) */
.team2-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: center; }
.team-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.team-tile { display: flex; flex-direction: column; min-height: 168px; }
.team-tile__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: auto;
}
.team-tile h4 { margin-top: 1.5rem; margin-bottom: 0.35rem; color: var(--navy); }
.team-tile--featured { background: var(--blue); border-color: var(--blue); }
.team-tile--featured .team-tile__icon { background: rgba(255,255,255,0.18); color: var(--white); }
.team-tile--featured h4 { color: var(--white); }
.team-tile--featured p { color: rgba(255,255,255,0.85); }
@media (max-width: 860px) { .team2-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Leadership principles — card grid */
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.principle-card {
  background: var(--white);
  border: 1px solid rgba(20,106,225,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.principle-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.principle-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.principle-card p { font-size: 0.9375rem; margin: 0; }
@media (max-width: 860px) { .principles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .principles-grid { grid-template-columns: 1fr; } }
