*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  ::selection {
    background: rgba(var(--deep-rgb), 0.18);
    color: var(--blue-deep);
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 100;
    transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  }

  nav.scrolled {
    background: rgba(255,255,255,0.96);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
  }

  .nav-logo {
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--blue); }

  .nav-cta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  }

  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(var(--deep-rgb), 0.35);
  }

  .nav-links a:focus-visible,
  .nav-cta:focus-visible,
  .btn-primary:focus-visible,
  .btn-secondary:focus-visible {
    outline: 2px solid var(--accent-secondary);
    outline-offset: 3px;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    background:
      radial-gradient(ellipse 80% 60% at 10% 90%, rgba(var(--deep-rgb), 0.08) 0%, transparent 55%),
      radial-gradient(ellipse 60% 50% at 95% 15%, rgba(var(--warm-rgb), 0.5) 0%, transparent 50%),
      linear-gradient(165deg, var(--ice) 0%, var(--bg-primary-light) 45%, var(--ice-mid) 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
    position: relative;
  }

  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(var(--deep-rgb), 0.06) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(135deg, black 20%, transparent 70%);
    -webkit-mask-image: linear-gradient(135deg, black 20%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 1;
  }

  .hero-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--heading-accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--heading-accent);
  }

  .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.08;
    color: var(--heading);
    margin-bottom: 28px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--heading-accent);
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 440px;
    margin-bottom: 44px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--deep-rgb), 0.35);
  }

  .btn-secondary {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out), background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  }

  .btn-secondary:hover {
    transform: translateY(-2px);
  }

  .hero-visual {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
      radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
      linear-gradient(200deg, var(--ice-deep) 0%, var(--ice-mid) 40%, var(--bg-primary-mid) 100%);
    z-index: 1;
  }

  .hero-visual::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(var(--deep-rgb), 0.12);
    animation: hero-ring 8s ease-in-out infinite;
    -webkit-animation: hero-ring 8s ease-in-out infinite;
  }

  @keyframes hero-ring {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.06); opacity: 0.85; }
  }

  @-webkit-keyframes hero-ring {
    0%, 100% { -webkit-transform: scale(1); opacity: 0.5; }
    50% { -webkit-transform: scale(1.06); opacity: 0.85; }
  }

  /* Fascia diagram SVG */
  .hero-diagram {
    width: 380px;
    height: 380px;
    filter: drop-shadow(0 12px 40px rgba(var(--deep-rgb), 0.15));
    animation: hero-target-float 20s ease-in-out infinite;
    -webkit-animation: hero-target-float 20s ease-in-out infinite;
    will-change: transform;
  }

  /* ── APP PREVIEW TEASER (below hero) ── */
  .app-preview-teaser {
    display: flex;
    justify-content: center;
    padding: 8px 24px 52px;
    margin-top: -16px;
  }

  .app-preview-teaser-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
  }

  .app-frame--compact {
    width: 176px;
    height: 308px;
    background: var(--accent-secondary-dark);
    border-radius: 24px;
    border: 5px solid rgba(var(--deep-rgb), 0.18);
    overflow: hidden;
    position: relative;
    box-shadow:
      0 0 0 1px rgba(var(--deep-rgb), 0.08),
      0 16px 40px rgba(var(--deep-rgb), 0.22);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  }

  .app-preview-teaser-link:hover .app-frame--compact {
    transform: translateY(-4px);
    box-shadow:
      0 0 0 1px rgba(var(--deep-rgb), 0.1),
      0 22px 48px rgba(var(--deep-rgb), 0.28);
  }

  .app-teaser-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 5px;
    border-radius: 0 0 4px 4px;
    background: rgba(0, 0, 0, 0.35);
    z-index: 3;
    pointer-events: none;
  }

  .app-teaser-preview {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border: none;
    background: var(--accent-secondary-dark);
  }

  .app-preview-teaser-caption {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.2s;
  }

  .app-preview-teaser-link:hover .app-preview-teaser-caption {
    color: var(--accent-secondary);
  }

  @media (max-width: 768px) {
    .app-preview-teaser {
      padding: 0 24px 40px;
      margin-top: -8px;
    }
    .app-frame--compact {
      width: min(168px, 46vw);
      height: auto;
      aspect-ratio: 240 / 420;
    }
  }

  /* ── STRIP ── */
  .strip {
    background: linear-gradient(90deg, var(--blue-deep) 0%, var(--accent-secondary-dark) 50%, var(--blue-deep) 100%);
    padding: 24px 80px;
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .strip-item:first-child { padding-left: 0; }
  .strip-item:last-child { border-right: none; padding-right: 0; }

  .strip-num {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--ice-mid);
    line-height: 1;
  }

  .strip-text {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
  }

  /* ── SECTIONS SHARED ── */
  section {
    padding: 100px 80px;
  }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--heading-accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--heading-accent);
  }

  .section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    color: var(--heading);
    margin-bottom: 20px;
  }

  .section-title em {
    font-style: italic;
    color: var(--heading-accent);
  }

  /* ── PHILOSOPHY ── */
  #philosophy {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .philosophy-body p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 20px;
  }

  .philosophy-body p strong {
    font-weight: 500;
    color: var(--text);
  }

  .philosophy-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 8px;
    box-shadow: var(--shadow-sm);
  }

  .pillar {
    background: var(--white);
    padding: 28px 24px;
    transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  }

  .pillar:hover {
    background: var(--ice);
    transform: translateY(-2px);
  }

  .pillar-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 14px;
  }

  .pillar h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }

  .pillar p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-soft);
  }

  /* ── FASCIA EXPLAINER ── */
  #fascia {
    background:
      radial-gradient(ellipse 60% 50% at 100% 0%, rgba(255, 255, 255, 0.7) 0%, transparent 55%),
      var(--ice);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .fascia-visual {
    position: relative;
  }

  .fascia-card {
    background: var(--white);
    border: 1px solid var(--ice-deep);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  }

  .fascia-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .fascia-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--blue-deep);
    margin-bottom: 24px;
  }

  .fascia-layers {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .layer {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .layer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
  }

  .layer-dot.superficial { background: var(--ice-deep); border: 2px solid var(--blue); }
  .layer-dot.deep { background: var(--blue); }
  .layer-dot.visceral { background: var(--blue-dark); }

  .layer-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--blue-dark);
    margin-bottom: 4px;
  }

  .layer-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-soft);
  }

  .fascia-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 20px;
  }

  .fascia-content p strong {
    font-weight: 500;
    color: var(--text);
  }

  blockquote {
    border-left: 3px solid var(--blue);
    padding: 20px 0 20px 28px;
    margin: 28px 0;
    background: linear-gradient(90deg, rgba(var(--deep-rgb), 0.06) 0%, transparent 100%);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }

  blockquote p {
    font-family: var(--font-heading);
    font-size: 20px !important;
    font-style: italic;
    line-height: 1.5 !important;
    color: var(--blue-dark) !important;
    margin: 0 !important;
  }

  /* ── SEMINARS ── */
  #seminars {
    background: var(--white);
  }

  .seminars-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .seminars-intro p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-mid);
    margin-top: 16px;
  }

  .seminars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    align-items: stretch;
  }

  .seminar-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--white);
    padding: 40px 32px;
    transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    cursor: default;
    position: relative;
  }

  .seminar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--ice-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-out);
  }

  .seminar-card:hover {
    background: var(--ice);
    box-shadow: inset 0 0 0 1px rgba(var(--deep-rgb), 0.08);
  }

  .seminar-card:hover::before {
    transform: scaleX(1);
  }

  .seminar-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--ice-mid);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 20px;
  }

  .seminar-title {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.25;
    min-height: 2.5em;
    color: var(--heading);
    margin-bottom: 14px;
  }

  .seminar-desc {
    flex: 1 1 auto;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 0;
  }

  .seminar-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: 28px;
  }

  .seminar-meta-row {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    column-gap: 1.25rem;
    align-items: baseline;
    min-height: 1.45em;
    font-size: 12px;
  }

  .meta-key {
    color: var(--text-soft);
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .meta-val {
    color: var(--text-mid);
    font-weight: 400;
    text-align: right;
    line-height: 1.45;
    justify-self: end;
    width: 100%;
    max-width: 100%;
  }

  .meta-val--location {
    max-width: 11.5rem;
  }

  .seminar-cta {
    margin-top: auto;
    padding-top: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-deep);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
  }

  .seminar-cta--book {
    padding: 13px 20px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(var(--deep-rgb), 0.18);
    transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  }

  .seminar-cta--book:hover {
    background: var(--blue-deep);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(var(--deep-rgb), 0.24);
  }

  .seminar-cta--book::after {
    content: '→';
    transition: transform 0.2s;
  }

  .seminar-card:hover .seminar-cta--book::after {
    transform: translateX(4px);
  }

  .seminar-cta:not(.seminar-cta--book)::after {
    content: '→';
    transition: transform 0.2s;
  }

  .seminar-card:hover .seminar-cta:not(.seminar-cta--book)::after {
    transform: translateX(4px);
  }

  /* ── APP CTA ── */
  #app {
    background:
      radial-gradient(ellipse 70% 80% at 100% 50%, rgba(var(--deep-rgb), 0.2) 0%, transparent 55%),
      radial-gradient(ellipse 50% 60% at 0% 100%, rgba(var(--warm-rgb), 0.08) 0%, transparent 50%),
      var(--blue-deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  #app::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
  }

  .app-content,
  .app-visual {
    position: relative;
    z-index: 1;
  }

  .app-content .section-label { color: var(--ice-deep); }
  .app-content .section-label::before { background: var(--ice-deep); }

  .app-content .section-title {
    color: var(--white);
  }

  .app-content .section-title em {
    color: var(--ice-deep);
  }

  .app-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
  }

  .app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .app-frame {
    width: 260px;
    height: 480px;
    background: var(--ice);
    border-radius: 32px;
    border: 8px solid rgba(255,255,255,0.14);
    overflow: hidden;
    position: relative;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 40px 80px rgba(0, 0, 0, 0.45),
      0 12px 32px rgba(var(--deep-rgb), 0.2);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  }

  .app-visual:hover .app-frame {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 48px 96px rgba(0, 0, 0, 0.5),
      0 16px 40px rgba(var(--deep-rgb), 0.25);
  }

  .app-frame iframe,
  .app-teaser-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    object-position: top center;
    background: var(--accent-secondary-dark);
  }

  .app-frame iframe {
    pointer-events: none;
    transform-origin: top left;
  }

  .app-frame-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
  }

  .app-logo-badge {
    width: 56px;
    height: 56px;
    background: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app-badge-text {
    font-family: var(--font-heading);
    font-size: 24px;
    color: white;
  }

  .app-preview-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--blue-deep);
    text-align: center;
  }

  .app-preview-sub {
    font-size: 12px;
    color: var(--text-soft);
    text-align: center;
    line-height: 1.5;
  }

  .btn-app {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--blue-deep);
    background: var(--ice-mid);
    padding: 15px 32px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
  }

  .btn-app:hover { background: var(--ice-deep); }

  /* ── ABOUT ── */
  #about {
    background: var(--ice);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 20px;
  }

  .about-credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  .credential {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--ice-deep);
    border-radius: var(--radius-sm);
    transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  }

  .credential:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
  }

  .cred-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .cred-text {
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 400;
  }

  .about-portrait {
    background: linear-gradient(180deg, var(--white) 0%, var(--ice-mid) 100%);
    border-radius: var(--radius-lg);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid var(--ice-deep);
    padding: 32px 28px 0;
    gap: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  }

  .about-portrait:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .about-photo {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid var(--white);
    box-shadow: 0 8px 28px rgba(var(--deep-rgb), 0.22);
    flex-shrink: 0;
  }

  .about-initials {
    width: 100px;
    height: 100px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .about-initials span {
    font-family: var(--font-heading);
    font-size: 32px;
    color: white;
  }

  .about-name {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--heading);
    text-align: center;
  }

  .about-role {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
    text-align: center;
  }

  .about-origin {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-soft);
    text-align: center;
    font-style: italic;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--ice-deep);
    border: 1px solid var(--ice-deep);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
  }

  .about-stat {
    background: var(--white);
    padding: 14px 10px;
    text-align: center;
    overflow: hidden;
  }

  .stat-num {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--blue);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .stat-label {
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-top: 4px;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
  }

  /* ── BOOKING CTA ── */
  .cta-banner {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-secondary-dark) 100%) !important;
    position: relative;
    overflow: hidden;
  }

  .cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-banner > * {
    position: relative;
    z-index: 1;
  }

  /* ── MOBILE SECTION ── */
  #mobile {
    background:
      radial-gradient(ellipse 50% 80% at 0% 50%, rgba(var(--deep-rgb), 0.06) 0%, transparent 50%),
      var(--ice) !important;
  }

  #mobile .mobile-photo-wrap img {
    filter: saturate(0.92) contrast(1.02);
  }

  #mobile .mobile-pricing-card {
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.35s var(--ease-out);
  }

  #mobile .mobile-pricing-card:hover {
    box-shadow: var(--shadow-lg);
  }

  #mobile .mobile-audience-grid > div {
    transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  }

  #mobile .mobile-audience-grid > div:hover {
    background: var(--ice) !important;
    transform: translateY(-3px);
  }

  /* ── FOOTER ── */
  footer {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--line);
    padding: 48px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--accent-secondary);
  }

  .footer-logo span {
    font-style: italic;
    color: var(--accent-secondary);
    opacity: 0.82;
  }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .footer-links a {
    font-size: 13px;
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--blue); }

  .footer-copy {
    font-size: 12px;
    color: var(--text-soft);
  }

  /* ── MOBILE ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-mid);
    transition: 0.3s;
  }

  @media (max-width: 900px) {
    nav { padding: 0 24px; }

    .nav-links { display: none; }

    .hamburger { display: flex; }

    #hero {
      grid-template-columns: 1fr;
      min-height: auto;
      overflow: visible;
      padding-bottom: 48px;
    }

    .hero-content { padding: 60px 24px 24px; }

    .hero-visual {
      display: flex;
      height: auto;
      min-height: 300px;
      padding: 0 24px 40px;
      background: transparent;
      overflow: visible;
      animation: hero-target-float 20s ease-in-out infinite;
      -webkit-animation: hero-target-float 20s ease-in-out infinite;
      will-change: transform;
    }

    .hero-visual::after {
      width: min(260px, 72vw);
      height: min(260px, 72vw);
      animation: hero-ring 8s ease-in-out infinite;
      -webkit-animation: hero-ring 8s ease-in-out infinite;
    }

    .hero-diagram {
      width: min(280px, 78vw);
      height: min(280px, 78vw);
      overflow: visible;
      /* Mobile floats the whole .hero-visual instead, so cancel the
         desktop diagram-level float to avoid compounding the motion. */
      animation: none;
      -webkit-animation: none;
    }

    section { padding: 64px 24px; }

    #philosophy, #fascia, #seminars .seminars-header,
    #app, #about { grid-template-columns: 1fr; gap: 40px; }

    .seminars-grid { grid-template-columns: 1fr; }

    .seminar-meta-row {
      grid-template-columns: 4.75rem minmax(0, 1fr);
      column-gap: 1rem;
    }

    .meta-val--location {
      max-width: 100%;
    }

    #mobile > div > div:first-child,
    #mobile > div { grid-template-columns: 1fr !important; }

    #mobile > div:last-child { grid-template-columns: 1fr 1fr !important; }

    #mobile { padding: 64px 24px !important; }

    #mobile .mobile-photo-wrap {
      position: relative !important;
      top: auto !important;
      right: auto !important;
      width: 100% !important;
      height: 220px !important;
      margin-bottom: 28px;
    }

    .philosophy-pillars { grid-template-columns: 1fr; }

    .strip {
      padding: 20px 24px;
      gap: 0;
      overflow-x: auto;
      justify-content: flex-start;
    }

    .strip-item {
      padding: 0 24px;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .strip-item:first-child { padding-left: 0; }

    footer { flex-direction: column; gap: 24px; text-align: center; padding: 40px 24px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    /* Booking CTA banner */
    .cta-banner {
      padding: 48px 24px !important;
      flex-direction: column !important;
      align-items: flex-start !important;
    }

    .cta-banner > div:last-child {
      width: 100%;
    }

    .cta-banner a {
      width: 100%;
      text-align: center;
      justify-content: center;
    }

    /* App section */
    .app-frame { width: min(220px, 72vw); height: auto; aspect-ratio: 240 / 420; }
    .app-frame--compact { width: min(168px, 46vw); height: auto; aspect-ratio: 240 / 420; }
    .app-visual { display: flex; justify-content: center; }
    .app-preview-teaser { display: flex; }
    .seminar-cta--book {
      width: 100%;
      justify-content: center;
      min-height: 44px;
    }
  }

  /* ── ANIMATION ── */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }

  .fade-in.visible {
    opacity: 1;
    transform: none;
  }

  #hero .hero-content.fade-in.visible {
    transition-delay: 0.05s;
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-visual,
    .hero-visual::after { animation: none; }
    .fade-in { transition: opacity 0.4s ease; transform: none; }
    .btn-primary:hover,
    .btn-secondary:hover,
    .nav-cta:hover,
    .pillar:hover,
    .fascia-card:hover,
    .about-portrait:hover,
    .app-visual:hover .app-frame { transform: none; }
  }

/* ── BREVO FORM + INTRODUCTORY SIGNUP (was fascialab.css) ───────────────── */
/* ── BREVO FORM FONTS & DEFAULTS ── */
@font-face {
  font-display: block;
  font-family: Roboto;
  src: url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff) format("woff")
}

@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 600;
  src: url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff) format("woff")
}

@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 700;
  src: url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff) format("woff")
}

:where(.sib-form-message-panel) {
  display: none;
}

:where(.sib-form-message-panel .sib-notification__icon) {
  width: 20px;
  height: 20px;
}

#sib-container input:-ms-input-placeholder {
  font-family: Helvetica, sans-serif;
  text-align: left;
  color: #c0ccda;
}

#sib-container input::placeholder {
  font-family: Helvetica, sans-serif;
  text-align: left;
  color: #c0ccda;
}

#sib-container textarea::placeholder {
  font-family: Helvetica, sans-serif;
  text-align: left;
  color: #c0ccda;
}

#sib-container a {
  text-decoration: underline;
  color: #2BB2FC;
}

  /* ── INTRODUCTORY SESSION / SIGNUP ── */
  #intro-signup {
    scroll-margin-top: 96px;
    margin-top: 44px;
    padding-top: 44px;
    border-top: 1px solid var(--line);
  }

  #intro-form-embed {
    width: 100%;
    margin: 0 auto 36px;
    display: flex;
    justify-content: center;
  }

  #intro-form-embed .sib-form {
    text-align: center;
    background-color: transparent !important;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }

  #intro-form-embed .sib-form-container {
    margin: 0 auto;
  }

  #intro-form-embed #sib-container {
    max-width: 540px !important;
    margin: 0 auto;
    border-color: var(--ice-deep) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm);
  }

  #intro-form-embed .sib-form-block p,
  #intro-form-embed .sib-text-form-block p {
    font-family: var(--font-heading) !important;
    color: var(--blue-deep) !important;
  }

  #intro-form-embed .sib-form-block:first-of-type p {
    font-size: 28px !important;
    font-weight: 400 !important;
  }

  #intro-form-embed .entry__label,
  #intro-form-embed .sib-text-form-block p,
  #intro-form-embed .entry__specification {
    font-family: 'DM Sans', sans-serif !important;
    color: var(--text-mid) !important;
  }

  #intro-form-embed #EMAIL {
    font-family: 'DM Sans', sans-serif !important;
    border-color: var(--ice-deep) !important;
    border-radius: var(--radius-sm) !important;
  }

  #intro-form-embed .sib-form-block__button {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--btn-primary-text) !important;
    background: linear-gradient(
      180deg,
      var(--btn-primary-top) 0%,
      var(--accent-secondary) 55%,
      var(--accent-secondary-dark) 100%
    ) !important;
    border-radius: var(--radius-sm) !important;
    width: 100%;
    max-width: 280px;
  }

  #intro-form-embed .sib-form-block__button:hover {
    background: var(--accent-secondary-dark) !important;
    color: var(--btn-primary-text) !important;
  }

  #intro-form-embed .sib-form-block[style*="text-align: left"] {
    text-align: center !important;
  }

  #intro-form-embed .entry__label,
  #intro-form-embed .form__label-row {
    text-align: left;
  }

  #intro-form-embed .g-recaptcha {
    display: inline-block;
    margin: 0 auto;
    min-height: 78px;
  }

  #intro-form-embed .sib-captcha .form__label-row {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .intro-recaptcha-notice {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-mid);
    text-align: center;
    max-width: 480px;
    margin: 0 auto 12px;
    padding: 14px 16px;
    background: var(--ice);
    border: 1px solid var(--ice-deep);
    border-radius: var(--radius-sm);
  }

  .intro-recaptcha-notice[hidden] { display: none; }

  .intro-recaptcha-notice code {
    font-size: 13px;
    color: var(--blue-dark);
  }

  #intro-form-embed .sib-captcha .entry__error--primary:not(:empty) {
    display: block !important;
    margin-top: 10px;
    text-align: center;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  #intro-form-embed #error-message,
  #intro-form-embed #success-message {
    margin-left: auto;
    margin-right: auto;
  }

  #intro-form-embed #success-message.sib-form-message-panel:not([style*="display: none"]) {
    max-width: 540px;
    margin-bottom: 20px;
  }

  #intro-form-embed #success-message .sib-form-message-panel__inner-text {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    color: #085229;
    text-align: center;
  }

  .intro-subscribe-next {
    max-width: 540px;
    margin: 0 auto 36px;
    padding: 32px 28px;
    background: var(--ice);
    border: 1px solid var(--ice-deep);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
  }

  .intro-subscribe-next[hidden] { display: none; }

  .intro-subscribe-next-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
  }

  .intro-subscribe-next h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--blue-deep);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .intro-subscribe-next p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-mid);
    margin-bottom: 20px;
  }

  .intro-subscribe-next-note {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-soft);
    margin-top: 16px;
    line-height: 1.55;
  }

  .intro-path-primary {
    background: var(--ice) !important;
    border: 1px solid var(--ice-deep);
  }

  .intro-paths-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
  }

  .intro-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .intro-path {
    background: var(--white);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .intro-path-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--heading);
    line-height: 1.2;
  }

  .intro-path-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-mid);
    flex: 1;
  }

  .intro-path .btn-primary,
  .intro-path .btn-secondary {
    align-self: flex-start;
    margin-top: 4px;
  }

  @media (max-width: 700px) {
    .intro-paths { grid-template-columns: 1fr; }
    #intro-form-embed #sib-container { max-width: 100% !important; }
  }

  /* ── ABOUT v2 — editorial bio, info stripe, praxis carousel ── */
  #about.about-section {
    background: var(--white);
    display: block;
    padding: 110px 0 80px;
    grid-template-columns: none;
    gap: 0;
  }

  .about-frame { max-width: 780px; margin: 0 auto; position: relative; padding: 0 64px; }

  .about-eyebrow {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 36px;
  }

  .about-meet { display: flex; align-items: center; gap: 28px; margin-bottom: 44px; flex-wrap: wrap; }

  .about-meet-photo {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 28%;
    border: 4px solid var(--white);
    box-shadow: 0 10px 32px rgba(var(--deep-rgb), 0.22);
    flex-shrink: 0;
    background: var(--ice-mid);
  }

  .about-meet-text { display: flex; flex-direction: column; gap: 6px; min-width: 0; }

  .about-meet-name {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 500;
    color: var(--heading);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .about-meet-name em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent-secondary);
  }

  .about-rule {
    height: 1px;
    background: linear-gradient(90deg, var(--accent-secondary) 0%, transparent 70%);
    border: none;
    margin: 0 0 36px 0;
    opacity: 0.6;
  }

  .about-bio { display: flex; flex-direction: column; gap: 18px; margin-bottom: 52px; }

  .about-bio p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--heading-strong);
    margin: 0;
  }

  .about-info-stripe {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-secondary-dark) 100%);
    padding: 22px 56px;
    margin: 44px 0;
    color: white;
    box-shadow: 0 4px 24px rgba(var(--deep-rgb), 0.12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .about-info-stripe::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.1), transparent 60%);
    pointer-events: none;
  }

  .info-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 6px 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    position: relative;
    z-index: 1;
  }

  .info-cell:first-child { border-left: none; }

  .info-val {
    font-family: var(--font-heading);
    font-size: 26px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  }

  .info-val--word { font-size: 17px; line-height: 1.2; letter-spacing: 0.005em; }

  .info-key {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.45;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  }

  .cta-stripe-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .cta-stripe-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
  }

  .about-creds {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 500;
    line-height: 1.6;
  }

  .about-creds > li {
    position: relative;
    padding-left: 18px;
  }

  .about-creds > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-secondary);
    transform: translateY(-50%);
  }

  .about-creds a { color: var(--accent-secondary); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
  .about-creds a:hover { border-bottom-color: var(--accent-secondary); }

  .about-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    padding-top: 28px;
    border-top: 1px solid var(--ice-deep);
  }

  .about-foot-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--heading-strong);
  }

  .about-foot-link {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--ice-deep);
    border-radius: 999px;
    background: var(--white);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }

  .about-foot-link:hover {
    background: var(--ice-mid);
    border-color: var(--accent-secondary);
    transform: translateY(-1px);
  }

  .about-foot-review-btns {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .about-foot-google-icon {
    flex-shrink: 0;
  }

  .about-foot-divider { color: var(--text-soft); opacity: 0.5; margin: 0 4px; }

  /* Praxis photo carousel */
  .praxis-circles-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--heading-strong);
    margin-right: 8px;
  }

  .praxis-carousel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 36px 0 28px 0;
    max-width: 480px;
  }
  .praxis-carousel .praxis-circles-label { margin: 0 0 4px 0; }
  .praxis-carousel-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    background: var(--ice-mid);
    box-shadow: 0 10px 28px rgba(var(--deep-rgb), 0.16);
  }
  .praxis-carousel-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.10) 28%, rgba(0,0,0,0) 55%);
    pointer-events: none;
    z-index: 1;
  }
  .praxis-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.7s var(--ease-out), transform 6s linear;
    will-change: opacity, transform;
  }
  .praxis-slide.is-active { opacity: 1; transform: scale(1); }
  .praxis-carousel-caption {
    position: absolute;
    left: 16px;
    bottom: 14px;
    right: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  }
  .praxis-carousel-caption-title { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }
  .praxis-carousel-caption-sub { font-size: 10px; font-weight: 500; opacity: 0.92; letter-spacing: 0.14em; text-transform: uppercase; }
  .praxis-carousel-dots { display: flex; gap: 8px; margin-top: 4px; }
  .praxis-dot {
    width: 26px;
    height: 3px;
    border-radius: 2px;
    border: 0;
    background: var(--ice-deep);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s var(--ease-out), width 0.3s var(--ease-out);
    appearance: none;
  }
  .praxis-dot:hover { background: var(--blue); }
  .praxis-dot:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
  .praxis-dot.is-active { background: var(--accent-secondary); width: 38px; }

  /* Mobile section title with van */
  .mobile-title-row { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 8px; }
  .mobile-van { width: 96px; height: auto; flex-shrink: 0; color: var(--blue); margin-top: 6px; }

  @media (max-width: 900px) {
    .about-info-stripe { padding: 28px 32px; }
  }

  @media (max-width: 768px) {
    #about.about-section { padding: 72px 24px; }
    .about-frame { padding: 0; }
    .about-creds {
      gap: 14px;
      margin-bottom: 28px;
    }
    .about-creds > li {
      padding-left: 16px;
    }
    .about-meet { flex-direction: column; text-align: center; gap: 20px; }
    .about-meet-text { align-items: center; }
    .about-info-stripe {
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding: 24px 20px;
      margin: 36px 0;
    }
    .info-cell { padding: 16px 10px; }
    .info-cell:nth-child(2n+1) { border-left: none; }
    .info-cell:nth-child(n+3) {
      border-top: 1px solid rgba(255, 255, 255, 0.22);
    }
    .praxis-carousel { max-width: 100%; }
  }
