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

    :root {
      --bg: #0a0a0a;
      --bg-2: #111111;
      --surface: #151515;
      --text: #f5f5f0;
      --text-dim: #a3a39c;
      --accent: #ff5722;
      --accent-2: #ffa726;
      --success: #34d399;
      --danger: #fb7185;
      --border: rgba(255, 255, 255, 0.10);
      --header-bg: rgba(10, 10, 10, 0.72);
      --max-width: 1400px;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
      scrollbar-width: thin;
      scrollbar-color: rgba(245, 245, 240, 0.24) transparent;
      scrollbar-gutter: stable;
    }

    /* Compact, subtle scrollbar with a WebKit fallback. */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }

    ::-webkit-scrollbar-track {
      background: transparent;
    }

    ::-webkit-scrollbar-thumb {
      min-height: 44px;
      border: 2px solid transparent;
      border-radius: 999px;
      background: rgba(245, 245, 240, 0.22);
      background-clip: content-box;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 87, 34, 0.45);
      background-clip: content-box;
    }

    body {
      min-height: 100vh;
      min-height: 100dvh;
      overflow-x: hidden;
      background: var(--bg);
      color: var(--text);
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    ::selection {
      background: var(--accent);
      color: #0a0a0a;
    }

    a, button, input {
      font: inherit;
    }

    a[href],
    button:not(:disabled),
    summary,
    [role="button"] {
      cursor: pointer;
    }

    input[type="email"],
    input[type="text"],
    input[type="search"],
    textarea {
      cursor: text;
    }

    button:disabled {
      cursor: not-allowed;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .skip-link {
      position: fixed;
      top: 1rem;
      left: 1rem;
      z-index: 10000;
      transform: translateY(-160%);
      padding: 0.75rem 1rem;
      border-radius: 999px;
      background: var(--text);
      color: var(--bg);
      text-decoration: none;
      transition: transform 0.2s ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .mesh-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .mesh-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.34;
      animation: float 20s ease-in-out infinite;
      will-change: transform;
    }

    .mesh-1 {
      top: -220px;
      right: -120px;
      width: 600px;
      height: 600px;
      background: var(--accent);
    }

    .mesh-2 {
      bottom: -180px;
      left: -120px;
      width: 520px;
      height: 520px;
      background: var(--accent-2);
      animation-delay: -7s;
    }

    .mesh-3 {
      top: 42%;
      left: 42%;
      width: 400px;
      height: 400px;
      background: #7c3aed;
      opacity: 0.2;
      animation-delay: -14s;
    }

    @keyframes float {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      33% { transform: translate3d(80px, -60px, 0) scale(1.12); }
      66% { transform: translate3d(-60px, 60px, 0) scale(0.92); }
    }

    .noise {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 1.25rem 2rem;
      border-bottom: 1px solid var(--border);
      background: var(--header-bg);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
    }

    .logo {
      color: var(--text);
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 1.75rem;
      font-style: italic;
      font-weight: 400;
      letter-spacing: -0.02em;
      text-decoration: none;
      white-space: nowrap;
    }

    .logo span {
      color: var(--accent);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .language-switch {
      display: inline-flex;
      align-items: center;
      gap: 0.2rem;
      padding: 0.2rem;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.035);
    }

    .lang-btn {
      min-width: 38px;
      min-height: 32px;
      padding: 0.35rem 0.6rem;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: var(--text-dim);
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      line-height: 1;
      transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .lang-btn:hover {
      color: var(--text);
    }

    .lang-btn[aria-pressed="true"] {
      background: var(--text);
      color: var(--bg);
    }

    .lang-btn:active {
      transform: scale(0.96);
    }

    .header-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0.65rem 1.2rem;
      border: 1px solid transparent;
      border-radius: 999px;
      background: var(--text);
      color: var(--bg);
      font-size: 0.84rem;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .header-btn:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-1px);
    }

    main {
      position: relative;
      z-index: 2;
      min-height: 100vh;
      padding: 8.5rem 2rem 4rem;
    }

    .hero {
      width: min(100%, var(--max-width));
      margin: 0 auto;
    }

    .hero-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--border);
    }

    .hero-meta {
      color: var(--text-dim);
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .hero-meta strong {
      display: block;
      margin-top: 0.3rem;
      color: var(--text);
      font-family: "Space Grotesk", sans-serif;
      font-weight: 500;
      letter-spacing: 0.02em;
    }

    h1 {
      margin-bottom: 4rem;
      font-family: "Instrument Serif", Georgia, serif;
      font-size: clamp(3.8rem, 12vw, 10.5rem);
      font-weight: 400;
      line-height: 0.88;
      letter-spacing: -0.045em;
      text-wrap: balance;
    }

    h1 .italic {
      color: var(--accent);
      font-style: italic;
    }

    h1 .outline {
      color: transparent;
      -webkit-text-stroke: 1.5px var(--text);
    }

    @supports not (-webkit-text-stroke: 1px #fff) {
      h1 .outline {
        color: var(--text);
      }
    }

    .word {
      display: inline-block;
      overflow: hidden;
      vertical-align: top;
    }

    .word-inner {
      display: inline-block;
      transform: translateY(105%);
      animation: wordReveal 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
      will-change: transform;
    }

    @keyframes wordReveal {
      to { transform: translateY(0); }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 4rem;
      align-items: start;
    }

    .hero-description {
      max-width: 520px;
      color: var(--text-dim);
      font-size: clamp(1rem, 1.5vw, 1.12rem);
      font-weight: 300;
      line-height: 1.75;
    }

    .hero-description p + p {
      margin-top: 1rem;
    }

    .countdown-wrap {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.25rem;
      padding: 2rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .cd-block {
      min-width: 0;
    }

    .cd-num {
      color: var(--text);
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-variant-numeric: tabular-nums;
      font-weight: 500;
      letter-spacing: -0.035em;
      line-height: 1;
    }

    .cd-label {
      display: block;
      margin-top: 0.6rem;
      color: var(--text-dim);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .marquee {
      position: relative;
      z-index: 2;
      margin: 4rem -2rem;
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--bg-2);
      padding: 1.35rem 0;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      gap: 3rem;
      white-space: nowrap;
      animation: marquee 30s linear infinite;
      will-change: transform;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 3rem;
      color: var(--text);
      font-family: "Instrument Serif", Georgia, serif;
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 400;
    }

    .marquee-star {
      color: var(--accent);
      font-size: 1.8rem;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(calc(-50% - 1.5rem)); }
    }

    .features {
      position: relative;
      z-index: 2;
      width: min(100%, var(--max-width));
      margin: 0 auto 6rem;
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
      font-family: "Instrument Serif", Georgia, serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .section-title .num {
      color: var(--accent);
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.86rem;
      letter-spacing: 0.1em;
    }

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

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--border);
    }

    .feature {
      position: relative;
      overflow: hidden;
      min-height: 280px;
      padding: 2.25rem;
      background: var(--bg);
      transition: background-color 0.35s ease, transform 0.35s ease;
    }

    .feature::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .feature:hover {
      background: var(--surface);
    }

    .feature:hover::before {
      opacity: 0.07;
    }

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

    .feature-num {
      display: block;
      margin-bottom: 1.5rem;
      color: var(--accent);
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
    }

    .feature-title {
      margin-bottom: 0.8rem;
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 1.8rem;
      font-weight: 400;
      letter-spacing: -0.02em;
    }

    .feature-text {
      color: var(--text-dim);
      font-size: 0.94rem;
      font-weight: 300;
      line-height: 1.65;
    }

    .newsletter-section {
      position: relative;
      z-index: 2;
      width: min(100%, var(--max-width));
      margin: 0 auto 6rem;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg-2);
      padding: clamp(2.25rem, 5vw, 4rem);
    }

    .newsletter-section::before {
      content: "";
      position: absolute;
      top: -120px;
      right: -120px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, var(--accent) 0%, transparent 68%);
      opacity: 0.14;
      filter: blur(70px);
      pointer-events: none;
    }

    .newsletter-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
    }

    .newsletter-section h2 {
      margin-bottom: 1.4rem;
      font-family: "Instrument Serif", Georgia, serif;
      font-size: clamp(2.3rem, 5vw, 3.7rem);
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1;
    }

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

    .newsletter-section p {
      max-width: 640px;
      margin-bottom: 2rem;
      color: var(--text-dim);
      font-size: 1.02rem;
      font-weight: 300;
      line-height: 1.7;
    }

    .newsletter-form {
      display: flex;
      width: 100%;
      max-width: 620px;
      gap: 0.65rem;
      flex-wrap: wrap;
    }

    .newsletter-form input {
      flex: 1 1 260px;
      min-width: 0;
      min-height: 52px;
      border: 1px solid var(--border);
      border-radius: 999px;
      outline: none;
      background: var(--bg);
      color: var(--text);
      padding: 0.95rem 1.25rem;
      font-size: 0.94rem;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .newsletter-form input::placeholder {
      color: #74746f;
    }

    .newsletter-form input:focus {
      border-color: var(--border);
      box-shadow: none;
    }

    .newsletter-form input[aria-invalid="true"] {
      border-color: var(--danger);
    }

    .newsletter-form input:focus-visible,
    .newsletter-form input[aria-invalid="true"]:focus-visible {
      outline: none !important;
      border-color: var(--focus-color);
      box-shadow: 0 0 0 2px var(--focus-color);
    }

    .newsletter-form button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      min-height: 52px;
      padding: 0.95rem 1.7rem;
      border: 0;
      border-radius: 999px;
      background: var(--text);
      color: var(--bg);
      font-size: 0.9rem;
      font-weight: 600;
      transition: transform 0.2s ease, background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
    }

    .newsletter-form button:hover:not(:disabled) {
      background: var(--accent);
      color: #fff;
      transform: translateY(-1px);
    }

    .newsletter-form button:disabled {
      opacity: 0.6;
    }

    .newsletter-form button svg {
      transition: transform 0.25s ease;
    }

    .newsletter-form button:hover:not(:disabled) svg {
      transform: translateX(4px);
    }

    .form-msg {
      min-height: 1.5rem;
      margin-top: 1rem;
      font-size: 0.88rem;
      line-height: 1.6;
    }

    .form-msg.success {
      color: var(--success);
    }

    .form-msg.error {
      color: var(--danger);
    }

    .form-msg a {
      color: inherit;
      text-underline-offset: 3px;
    }

    footer {
      position: relative;
      z-index: 2;
      border-top: 1px solid var(--border);
      background: var(--bg);
      padding: 3rem 2rem 2rem;
    }

    .footer-inner,
    .footer-bottom {
      width: min(100%, var(--max-width));
      margin-inline: auto;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-info {
      color: var(--text-dim);
      font-size: 0.84rem;
    }

    .footer-info strong {
      display: block;
      margin-bottom: 0.3rem;
      color: var(--text);
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 1.5rem;
      font-style: italic;
      font-weight: 400;
      letter-spacing: -0.02em;
    }

    .footer-info a {
      color: inherit;
      text-decoration: none;
    }

    .footer-info a:hover {
      color: var(--text);
    }

    .socials {
      display: flex;
      gap: 0.5rem;
    }

    .social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--text-dim);
      text-decoration: none;
      transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
    }

    .social:hover {
      transform: translateY(-3px);
      border-color: var(--accent);
      background: var(--accent);
      color: #fff;
    }

    .social svg {
      width: 18px;
      height: 18px;
    }

    .footer-bottom {
      display: flex;
      justify-content: flex-start;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      color: var(--text-dim);
      font-size: 0.72rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1100px) {
      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 820px) {
      header {
        padding: 1rem 1.25rem;
      }

      main {
        padding: 7.5rem 1.25rem 3rem;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .marquee {
        margin: 3.5rem -1.25rem;
      }

      .countdown-wrap {
        grid-template-columns: repeat(4, minmax(58px, 1fr));
      }

      footer {
        padding-inline: 1.25rem;
      }
    }

    @media (max-width: 620px) {
      .header-right {
        gap: 0.55rem;
      }

      .language-switch {
        padding: 0.15rem;
      }

      .lang-btn {
        min-width: 34px;
        min-height: 30px;
        padding-inline: 0.5rem;
      }

      .header-btn {
        padding-inline: 0.9rem;
      }

      .hero-top {
        margin-bottom: 2.5rem;
        padding-bottom: 1.5rem;
      }

      h1 {
        margin-bottom: 3rem;
        font-size: clamp(3.4rem, 18vw, 6rem);
      }

      .countdown-wrap {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .feature {
        min-height: auto;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-form input,
      .newsletter-form button {
        width: 100%;
        flex: 0 0 auto;
      }

      .newsletter-form input {
        min-height: 52px;
        height: 52px;
      }

      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 410px) {
      header {
        gap: 0.6rem;
        padding-inline: 0.85rem;
      }

      .logo {
        font-size: 1.5rem;
      }

      .header-btn {
        min-height: 38px;
        padding-inline: 0.75rem;
        font-size: 0.78rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }

      .word-inner,
      .reveal {
        opacity: 1;
        transform: none;
      }

      .marquee-track {
        animation: none;
      }
    }
  

/* === V3: accessibility, multilingual URLs, mobile navigation, social area === */
:root {
  --target: 44px;
  --focus-color: #ff7a50;
}

:focus-visible {
  outline: 3px solid var(--focus-color) !important;
  outline-offset: 4px !important;
}

a { text-underline-offset: 0.2em; }

header.site-header {
  min-height: 72px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switch { min-height: var(--target); }

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--target);
  min-height: var(--target);
  padding: .45rem .7rem;
  border-radius: 999px;
  color: var(--text-dim);
  font-family: "Space Grotesk", sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  text-decoration: none;
}

.lang-link:hover { color: var(--text); }
.lang-link[aria-current="page"] { background: var(--text); color: var(--bg); }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: var(--target);
  height: var(--target);
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  color: var(--text);
}

.menu-toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(18px);
}

.mobile-menu[hidden] { display: none !important; }
.mobile-menu-inner { display: grid; gap: .75rem; max-width: var(--max-width); margin: 0 auto; }

.language-suggestion {
  position: fixed;
  top: 84px;
  left: 50%;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: calc(100vw - 2rem);
  padding: .65rem .75rem .65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(17,17,17,.96);
  color: var(--text-dim);
  box-shadow: 0 14px 42px rgba(0,0,0,.35);
  transform: translateX(-50%);
  font-size: .82rem;
}
.language-suggestion[hidden] { display: none !important; }
.language-suggestion a { color: var(--text); font-weight: 600; white-space: nowrap; }
.language-suggestion button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text-dim);
  font-size: 1.2rem;
}
.language-suggestion button:hover { background: rgba(255,255,255,.06); color: var(--text); }

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--target);
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,.025);
}

.principles-section {
  max-width: var(--max-width);
  margin: 0 auto 6rem;
  position: relative;
  z-index: 2;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.principle-card {
  min-height: 210px;
  padding: 1.75rem;
  background: var(--bg);
}

.principle-num {
  display: block;
  margin-bottom: 2.3rem;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.principle-card h3 {
  margin-bottom: .75rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -.02em;
}

.principle-card p {
  color: var(--text-dim);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.65;
}

.header-btn:hover,
.newsletter-form button:hover:not(:disabled),
.social:hover {
  background: var(--accent) !important;
  color: #0a0a0a !important;
}

.word-delay-1 { animation-delay: .1s; }
.word-delay-2 { animation-delay: .2s; }
.word-delay-3 { animation-delay: .3s; }
.word-delay-4 { animation-delay: .4s; }
.word-delay-5 { animation-delay: .5s; }

.easter-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10001;
  max-width: min(360px, calc(100vw - 2rem));
  padding: .9rem 1rem;
  border: 1px solid rgba(255,87,34,.5);
  border-radius: 14px;
  background: #111;
  color: var(--text);
  box-shadow: 0 18px 60px rgba(0,0,0,.4);
}
.easter-toast[hidden] { display: none; }
body.easter-mode .mesh-3 { opacity: .34; }
body.easter-mode .logo span { text-shadow: 0 0 18px rgba(255,87,34,.65); }

.launch-date-note { margin-top: .85rem; color: var(--text-dim); font-size: .78rem; }

@media (max-width: 900px) {
  .principles-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  header.site-header { padding: .85rem 1rem; min-height: 64px; }
  .language-suggestion { top: 74px; width: calc(100vw - 2rem); border-radius: 16px; flex-wrap: wrap; }
  .language-suggestion button { margin-left: auto; }
  .desktop-controls { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu:not([hidden]) { display: block; }
  .logo { font-size: 1.55rem; }
  main { padding-top: 6.75rem; }
}

@media (max-width: 520px) {
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: auto; }
  .header-right { gap: .5rem; }
}

@media (prefers-contrast: more) {
  :root { --border: rgba(255,255,255,.35); --text-dim: #d0d0c8; }
  .outline { -webkit-text-stroke-width: 2px; }
}

@media (forced-colors: active) {
  .mesh-bg, .noise { display: none; }
  .outline { color: CanvasText; -webkit-text-stroke: 0; }
}


/* === V5: roadmap section + newsletter/mobile refinements === */
.roadmap-section {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max-width));
  margin: 0 auto 6rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--border);
  gap: 1px;
  list-style: none;
}

.roadmap-step {
  position: relative;
  min-height: 220px;
  padding: 1.8rem;
  background: var(--bg);
}

.roadmap-step::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent 75%);
  opacity: 0.78;
}

.roadmap-index {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.roadmap-step h3 {
  margin-bottom: 0.7rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.roadmap-step p {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .newsletter-section {
    padding: 2.25rem 1.25rem;
  }

  .newsletter-content {
    width: 100%;
    max-width: none;
  }

  .newsletter-form {
    max-width: none;
  }
}

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

  .roadmap-step {
    min-height: auto;
  }
}


/* === V7: profile, collaboration CTA and custom 404 === */
.about-section {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max-width));
  margin: 0 auto 6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  padding-block: clamp(1rem, 3vw, 2rem);
}

.about-grid .section-title { margin-bottom: 0; }

.about-copy {
  max-width: 760px;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 300;
  line-height: 1.8;
}

.about-copy p + p { margin-top: 1.1rem; }
.about-copy strong { color: var(--text); font-weight: 600; }

.about-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
}

.about-focus-list li {
  padding: .48rem .78rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: var(--text-dim);
  font-size: .78rem;
  line-height: 1.3;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.8rem;
}

.about-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 44px;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.025);
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.about-links a:hover {
  border-color: rgba(255,87,34,.6);
  background: rgba(255,87,34,.08);
  transform: translateY(-1px);
}


/* === Collaboration CTA === */
.collab-section {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto 6rem;
  padding: clamp(2.25rem, 5vw, 4.5rem);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
}

.collab-section::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,87,34,.22) 0%, rgba(255,87,34,0) 70%);
  filter: blur(35px);
  pointer-events: none;
}

.collab-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.collab-kicker {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
}

.collab-content h2 {
  margin: 0 0 1.4rem;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.collab-content h2 em {
  color: var(--accent);
  font-weight: inherit;
}

.collab-content > p {
  max-width: 720px;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 300;
  line-height: 1.75;
}

.collab-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.primary-cta {
  gap: .75rem;
  padding: .9rem 1.45rem;
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.primary-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: translateY(-1px);
}

.secondary-cta {
  padding: .9rem 1.2rem;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,.025);
}

.secondary-cta:hover {
  border-color: rgba(255,87,34,.6);
  background: rgba(255,87,34,.08);
}


.not-found-page main {
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 7rem 1.25rem 3rem;
}

.not-found-card {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--border);
  background: rgba(17,17,17,.78);
  backdrop-filter: blur(14px);
}

.not-found-code {
  display: block;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.not-found-card h1 {
  margin: 1rem 0 1.35rem;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  line-height: .92;
}

.not-found-card p {
  max-width: 650px;
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.75;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 720px) {
  .about-section { margin-bottom: 4.5rem; }
}

@media (max-width: 520px) {
  .about-links,
  .collab-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-links a,
  .primary-cta,
  .secondary-cta {
    width: 100%;
  }
}

/* === Unified section cards === */
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}


.collaboration-feature {
  min-height: auto;
}



/* === V10: local about visual + accessible footer contact icons === */
.about-visual {
  margin: clamp(1.75rem, 4vw, 3rem) 0 0;
}

.about-visual img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg-2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.about-visual figcaption {
  max-width: 560px;
  margin-top: .75rem;
  color: var(--text-dim);
  font-size: .72rem;
  letter-spacing: .04em;
  line-height: 1.5;
}

.socials {
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 470px;
}

.social {
  flex: 0 0 44px;
}

.social:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}


@media (max-width: 980px) {
  .about-visual img,
  .about-visual figcaption {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .socials {
    justify-content: flex-start;
    max-width: 100%;
  }
}



/* === V10: safe-area responsive hardening === */
@supports (padding: max(0px)) {
  .site-header {
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
  }

  main {
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
  }

  footer {
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }

  @media (max-width: 820px) {
    .site-header,
    main,
    footer {
      padding-left: max(1.25rem, env(safe-area-inset-left));
      padding-right: max(1.25rem, env(safe-area-inset-right));
    }
  }

  @media (max-width: 410px) {
    .site-header {
      padding-left: max(.85rem, env(safe-area-inset-left));
      padding-right: max(.85rem, env(safe-area-inset-right));
    }
  }
}

@media (max-width: 520px) {
  .collab-section {
    margin-bottom: 4.5rem;
    padding: 2rem 1.25rem;
  }

  .collab-content h2 {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }
}
