
:root {
  /* Brand Colors (Sabbia Theme) */
  --night:    #1A3640;
  --deep:     #152C34;
  --surface:  #254B58;
  --card:     #254B58;
  --border:   #355E6C;
  --fog:      #68878C;
  --muted:    #68878C;
  --soft:     #B1B1A2;
  --white:    #D8CEB6;
  --whiteA:   rgba(216, 206, 182, 0.06);
  --amber:    #D8CEB4;
  --amber2:   #E5DCC5;
  --amberBg:  rgba(216, 206, 180, 0.10);
  --blue:     #4A7EE3;
  --blueBg:   rgba(74,126,227,0.10);
  --signal:   #B1B1A2;
  --error:    #C97A6E;

  /* Fonts */
  --font-display: 'Inter Tight', sans-serif;
  --font-body:    'Inter Tight', sans-serif;
  --font:         var(--font-body); /* For landing */

  /* Landing Aliases mapped to Brand System */
  --bg:       var(--night);
  --bg-card:  var(--surface);
  --amber-hover: var(--amber2);
  --amber-dark: #8A8268;

  /* Layout */
  --max: 640px;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}


/* ════ LANDING PAGE STYLES ════ */

    /* ══════════════════════════════════════════
       TOKENS — modifica colori/font qui
       ══════════════════════════════════════════ */
    

    

    

    body.page-landing {
      background: var(--bg);
      color: var(--white);
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
    }

    /* ── LAYOUT ── */
    .wrap {
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── HEADER ── */
.page-landing header {
      padding: 28px 0 0;
      text-align: center;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo .logo-img{
      margin-right: -10px;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-wordmark {
      font-size: 32px;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: var(--white);
    }

    .logo-wordmark em {
      font-style: normal;
      color: var(--amber);
    }

    /* ── HERO ── */
.page-landing main {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 56px 0 40px;
    }

    .hero {
      text-align: center;
    }

    /* Badge */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 5px 14px 5px 10px;
      font-size: 12px;
      color: var(--soft);
      margin-bottom: 32px;
      letter-spacing: 0.01em;
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--amber);
      animation: blink 3s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    /* Headlines */
.page-landing h1 {
      font-size: clamp(32px, 8vw, 52px);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 20px;
      text-wrap: balance;
    }
.page-landing .page-landing h1 em {
      font-style: normal;
      color: var(--amber);
    }

    .subhead {
      font-size: clamp(15px, 3.5vw, 18px);
      font-weight: 300;
      color: var(--soft);
      line-height: 1.65;
      max-width: 480px;
      margin: 0 auto 40px;
      text-wrap: pretty;
    }

    /* ── FORM ── */
    .form-wrap {
      position: relative;
      margin-bottom: 16px;
    }

    .email-row {
      display: flex;
      gap: 8px;
      background: var(--bg-card);
      border: 1.5px solid var(--border);
      border-radius: calc(var(--radius) + 2px);
      padding: 6px 6px 6px 18px;
      transition: border-color 0.2s;
    }

    .email-row:focus-within {
      border-color: rgba(232, 155, 92, 0.5);
    }

    .email-row.error-state {
      border-color: rgba(224, 88, 88, 0.6);
    }

    #email-input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      font-family: var(--font);
      font-size: 16px;
      /* prevent zoom on iOS */
      font-weight: 400;
      color: var(--white);
      min-width: 0;
      padding: 8px 0;
    }

    #email-input::placeholder {
      color: var(--muted);
    }

    /* CTA Button */
    .cta-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--amber);
      color: var(--bg);
      border: none;
      border-radius: var(--radius);
      padding: 0 20px;
      min-height: 48px;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -0.01em;
      white-space: nowrap;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      flex-shrink: 0;
    }

    .cta-btn:hover {
      background: var(--amber-hover);
    }

    .cta-btn:active {
      transform: scale(0.97);
    }

    .cta-btn:focus-visible {
      outline: 2px solid var(--amber);
      outline-offset: 2px;
    }

    .cta-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

    /* Spinner */
    .spinner {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(10, 22, 40, 0.3);
      border-top-color: var(--bg);
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* Micro-copy below form */
    .form-caption {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ── STATE MESSAGES ── */
    #state-message {
      display: none;
      padding: 16px 20px;
      border-radius: var(--radius);
      font-size: 15px;
      line-height: 1.5;
      text-align: left;
      margin-top: 12px;
    }

    #state-message.success {
      display: block;
      background: rgba(61, 214, 163, 0.08);
      border: 1px solid rgba(61, 214, 163, 0.2);
      color: var(--signal);
    }

    #state-message.error {
      display: block;
      background: rgba(224, 88, 88, 0.08);
      border: 1px solid rgba(224, 88, 88, 0.2);
      color: var(--error);
    }

    #state-message .retry-link {
      color: var(--amber);
      cursor: pointer;
      text-decoration: underline;
      background: none;
      border: none;
      font-family: var(--font);
      font-size: inherit;
      padding: 0;
    }

    /* ── SOCIAL PROOF ── */
    .social-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 32px;
      font-size: 13px;
      color: var(--muted);
    }

    .social-dots {
      display: flex;
      gap: -4px;
    }

    .social-dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 2px solid var(--bg);
      margin-right: -6px;
    }

    .social-count {
      color: var(--soft);
    }

    .social-count strong {
      color: var(--white);
      font-weight: 600;
    }

    /* ── DIVIDER ── */
    .divider {
      height: 1px;
      background: var(--border);
      margin: 40px 0 32px;
      opacity: 0.5;
    }

    /* ── WATCHES ── */
    .watches {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 12px;
      color: var(--muted);
      flex-wrap: wrap;
    }

    .watch-chip {
      display: flex;
      align-items: center;
      gap: 5px;
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 4px 10px;
      font-size: 11px;
      color: var(--soft);
      letter-spacing: 0.02em;
    }

    .watch-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--border);
    }

    /* ── FOOTER ── */
.page-landing footer {
      padding: 24px 0 32px;
      text-align: center;
    }

    .footer-line {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6;
    }

    .footer-line a {
      color: var(--muted);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: color 0.15s;
    }

    .footer-line a:hover {
      color: var(--soft);
    }

    .footer-sep {
      margin: 0 10px;
      opacity: 0.3;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 480px) {
      .email-row {
        flex-direction: column;
        padding: 10px 14px;
        gap: 10px;
      }

      #email-input {
        padding: 0;
      }

      .cta-btn {
        width: 100%;
        min-height: 52px;
        font-size: 15px;
      }
.page-landing main {
        padding: 40px 0 32px;
      }
    }

    /* ── PRIVACY CHECKBOX ── */
    .privacy-label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      cursor: pointer;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
      text-align: left;
      margin-top: 14px;
    }

    .privacy-label input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      width: 16px;
      height: 16px;
      min-width: 16px;
      border: 1.5px solid var(--border);
      border-radius: 4px;
      background: transparent;
      cursor: pointer;
      margin-top: 1px;
      transition: border-color 0.2s, background 0.2s;
    }

    .privacy-label input[type="checkbox"]:checked {
      background: var(--amber);
      border-color: var(--amber);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231A3640' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }

    .privacy-label input[type="checkbox"]:focus-visible {
      outline: 2px solid var(--amber);
      outline-offset: 2px;
    }

    .privacy-label a {
      color: var(--amber);
      text-decoration: none;
      border-bottom: 1px solid rgba(216, 206, 180, 0.3);
    }

    .privacy-label a:hover {
      border-bottom-color: var(--amber);
    }

    /* ── FOCUS ── */
    :focus-visible {
      outline: 2px solid var(--amber);
      outline-offset: 3px;
      border-radius: 4px;
    }
  

/* ════ BRAND IDENTITY STYLES ════ */

  

  

  

  body.page-brand {
    background: var(--night);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
.page-brand nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px; height: 60px;
    background: rgba(7,9,26,0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display); font-weight: 600; font-size: 18px;
    letter-spacing: -0.02em; color: var(--white);
  }
  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }
  .nav-links a {
    font-family: var(--font-body); font-size: 13px; font-weight: 400;
    color: var(--muted); text-decoration: none; letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-tag {
    font-size: 11px; font-family: var(--font-body); font-weight: 500;
    color: var(--amber); letter-spacing: 0.08em;
    border: 1px solid rgba(232,145,58,0.3); border-radius: 4px;
    padding: 3px 8px;
  }

  /* ── LAYOUT ── */
.page-brand section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border);
  }
.page-brand section:last-child { border-bottom: none; }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .section-label {
    font-family: var(--font-body); font-size: 11px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600; letter-spacing: -0.03em; line-height: 1.15;
    color: var(--white); margin-bottom: 16px;
  }
  .section-sub {
    font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.7;
    font-weight: 300;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: 80px 40px;
    position: relative; overflow: hidden;
    border-bottom: 1px solid var(--border);
  }
  .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(74,126,227,0.07) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 70% 70%, rgba(232,145,58,0.05) 0%, transparent 60%);
  }
  .hero-chip {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--border); border-radius: 100px;
    padding: 6px 16px; margin-bottom: 48px;
    font-size: 12px; color: var(--muted); letter-spacing: 0.05em;
  }
  .hero-chip span { color: var(--signal); }
  .hero-wordmark {
    font-family: var(--font-display); font-size: clamp(72px, 12vw, 160px);
    font-weight: 700; letter-spacing: -0.05em; line-height: 1;
    color: var(--white); margin-bottom: 24px;
    position: relative;
  }
  .hero-wordmark em {
    font-style: normal; color: var(--amber);
  }
  .hero-tagline {
    font-size: clamp(16px, 2vw, 22px); font-weight: 300;
    color: var(--soft); max-width: 600px; line-height: 1.5;
    letter-spacing: -0.01em; margin-bottom: 64px;
  }
  .hero-metrics {
    display: flex; gap: 48px; justify-content: center;
    flex-wrap: wrap;
  }
  .hero-metric {
    text-align: center;
  }
  .hero-metric-val {
    font-family: var(--font-display); font-size: 32px; font-weight: 600;
    letter-spacing: -0.04em; color: var(--white);
  }
  .hero-metric-val span { color: var(--amber); }
  .hero-metric-label {
    font-size: 12px; color: var(--fog); letter-spacing: 0.05em; margin-top: 4px;
  }
  .pulse-ring {
    display: inline-block; width: 8px; height: 8px;
    border-radius: 50%; background: var(--signal);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  /* ── LOGO SECTION ── */
  .logo-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 2px; margin-top: 56px;
  }
  .logo-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 56px 40px 40px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 32px; min-height: 280px;
  }
  .logo-card:first-child { border-radius: 12px 0 0 12px; }
  .logo-card:last-child { border-radius: 0 12px 12px 0; }
  .logo-card-label {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--fog); font-weight: 500; align-self: flex-start;
    width: 100%;
  }
  .logo-card-desc {
    font-size: 13px; color: var(--muted); align-self: flex-start;
    line-height: 1.5; max-width: 220px;
  }
  /* Dark variant bg */
  .logo-card.on-light {
    background: var(--white);
  }

  /* ── COLOR PALETTE ── */
  .palette-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px; margin-top: 56px;
  }
  .swatch {
    border-radius: 10px; overflow: hidden;
    border: 1px solid var(--border);
  }
  .swatch-color {
    height: 100px;
  }
  .swatch-info {
    padding: 14px 16px;
    background: var(--card);
  }
  .swatch-name {
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    color: var(--white); margin-bottom: 4px;
  }
  .swatch-hex {
    font-size: 11px; color: var(--fog); font-family: 'SF Mono', monospace;
    letter-spacing: 0.05em;
  }
  .swatch-role {
    font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.4;
  }
  .palette-divider {
    margin-top: 40px; padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  .palette-section-label {
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--fog); margin-bottom: 24px; font-weight: 500;
  }

  /* ── TYPOGRAPHY ── */
  .type-specimens {
    margin-top: 56px; display: flex; flex-direction: column; gap: 2px;
  }
  .type-row {
    display: grid; grid-template-columns: 200px 1fr;
    gap: 40px; align-items: baseline;
    padding: 32px 0; border-bottom: 1px solid var(--border);
  }
  .type-row:last-child { border-bottom: none; }
  .type-meta { flex-shrink: 0; }
  .type-style-name {
    font-size: 12px; color: var(--amber); letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 6px; font-weight: 500;
  }
  .type-specs {
    font-size: 11px; color: var(--fog); line-height: 1.7;
    font-family: 'SF Mono', monospace;
  }
  .t-display {
    font-family: var(--font-display); font-size: 64px; font-weight: 700;
    letter-spacing: -0.04em; line-height: 1; color: var(--white);
  }
  .t-h1 {
    font-family: var(--font-display); font-size: 40px; font-weight: 600;
    letter-spacing: -0.03em; line-height: 1.1; color: var(--white);
  }
  .t-h2 {
    font-family: var(--font-display); font-size: 24px; font-weight: 500;
    letter-spacing: -0.02em; line-height: 1.25; color: var(--white);
  }
  .t-body.page-brand {
    font-family: var(--font-body); font-size: 16px; font-weight: 400;
    line-height: 1.7; color: var(--soft); max-width: 560px;
  }
  .t-caption {
    font-family: var(--font-body); font-size: 12px; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--fog);
  }
  .t-mono {
    font-family: 'SF Mono', 'Fira Code', monospace; font-size: 14px;
    color: var(--signal); letter-spacing: 0.02em;
  }
  .font-pairing {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px;
  }
  .font-card {
    background: var(--card); border: 1px solid var(--border);
    padding: 40px; border-radius: 0;
  }
  .font-card:first-child { border-radius: 12px 0 0 12px; }
  .font-card:last-child { border-radius: 0 12px 12px 0; }
  .font-card-label {
    font-size: 11px; letter-spacing: 0.12em; color: var(--fog);
    text-transform: uppercase; margin-bottom: 24px; font-weight: 500;
  }
  .font-sample-display {
    font-family: var(--font-display); font-size: 48px; font-weight: 700;
    letter-spacing: -0.04em; line-height: 1; color: var(--white); margin-bottom: 16px;
  }
  .font-sample-body.page-brand {
    font-family: var(--font-body); font-size: 16px; line-height: 1.7;
    color: var(--muted); font-weight: 300;
  }
  .font-rationale {
    margin-top: 20px; font-size: 13px; color: var(--fog); line-height: 1.6;
    border-top: 1px solid var(--border); padding-top: 20px;
  }

  /* ── MICRO-COPY ── */
  .copy-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-top: 56px;
  }
  .copy-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 12px; padding: 32px;
  }
  .copy-card:first-child {
    grid-column: 1 / -1;
    background: var(--amberBg); border-color: rgba(232,145,58,0.25);
  }
  .copy-context {
    font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--amber); font-weight: 600; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
  }
  .copy-context::before {
    content: ''; width: 16px; height: 1px; background: var(--amber);
  }
  .copy-headline {
    font-family: var(--font-display); font-size: 20px; font-weight: 600;
    letter-spacing: -0.02em; color: var(--white); line-height: 1.3;
    margin-bottom: 10px;
  }
  .copy-body.page-brand {
    font-size: 14px; color: var(--soft); line-height: 1.6; font-weight: 300;
  }
  .copy-note {
    margin-top: 16px; font-size: 11px; color: var(--fog);
    border-top: 1px solid var(--border); padding-top: 12px;
    font-style: italic;
  }

  /* ── PHONE MOCKUP ── */
  .mockups-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 40px; margin-top: 56px; align-items: start;
  }
  .mockup-wrapper { display: flex; flex-direction: column; gap: 20px; }
  .mockup-label {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--fog); font-weight: 500;
  }
  .phone {
    width: 100%; max-width: 300px;
    background: #0A0E1C;
    border-radius: 44px;
    border: 1.5px solid #252D45;
    overflow: hidden;
    padding: 12px;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.04);
    margin: 0 auto;
  }
  .phone-inner {
    border-radius: 35px; overflow: hidden;
    background: var(--night);
    min-height: 580px;
    position: relative;
  }
  .phone-notch {
    width: 100px; height: 32px;
    background: #0A0E1C;
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
  }
  .phone-notch-cam {
    width: 10px; height: 10px; border-radius: 50%; background: #1A1F30;
    border: 2px solid #252D45;
  }
  .phone-notch-pill {
    width: 64px; height: 24px; background: #0A0E1C;
    border-radius: 20px;
  }
  .phone-statusbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 4px 20px 8px;
    font-size: 11px; font-weight: 600; color: var(--white);
    font-family: var(--font-display);
  }
  .status-icons { display: flex; gap: 5px; align-items: center; }
  .status-icon {
    font-size: 10px; color: var(--white);
  }

  /* SCREEN 1: push notification */
  .screen-notification {
    padding: 8px 16px 24px;
  }
  .notif-bg {
    border-radius: 28px;
    background: linear-gradient(160deg, #0F1829 0%, #07091A 100%);
    padding: 20px 20px 32px;
    text-align: center;
  }
  .notif-time {
    font-family: var(--font-display); font-size: 52px; font-weight: 300;
    letter-spacing: -0.04em; color: var(--white); line-height: 1;
    margin-bottom: 4px;
  }
  .notif-date {
    font-size: 13px; color: var(--muted); margin-bottom: 28px;
  }
  .notif-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 16px;
    text-align: left;
  }
  .notif-app-row {
    display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  }
  .notif-app-icon {
    width: 28px; height: 28px; border-radius: 8px;
    background: var(--amber); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .notif-app-name {
    font-size: 11px; font-weight: 600; color: var(--white); letter-spacing: 0.02em;
  }
  .notif-app-time {
    font-size: 11px; color: var(--muted); margin-left: auto;
  }
  .notif-title {
    font-family: var(--font-display); font-size: 14px; font-weight: 600;
    color: var(--white); margin-bottom: 4px; letter-spacing: -0.01em;
  }
  .notif-body.page-brand {
    font-size: 12px; color: var(--soft); line-height: 1.5;
  }
  .notif-actions {
    display: flex; gap: 8px; margin-top: 12px;
  }
  .notif-btn {
    flex: 1; padding: 8px; border-radius: 10px; border: none;
    font-size: 12px; font-weight: 500; cursor: pointer; font-family: var(--font-body);
  }
  .notif-btn-primary {
    background: var(--amber); color: var(--night);
  }
  .notif-btn-secondary {
    background: rgba(255,255,255,0.1); color: var(--white);
  }
  .notif-biometric {
    display: flex; gap: 10px; margin-top: 14px;
  }
  .notif-bio-chip {
    display: flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,0.06); border-radius: 8px;
    padding: 5px 8px;
    font-size: 10px; color: var(--soft);
  }
  .notif-bio-dot {
    width: 5px; height: 5px; border-radius: 50%; background: var(--amber);
  }
  .notif-bio-dot.blue { background: var(--blue); }

  /* SCREEN 2: breathing exercise */
  .screen-breathing {
    padding: 0 0 20px;
    min-height: 540px;
    display: flex; flex-direction: column;
    background: var(--night);
  }
  .breath-header {
    padding: 12px 20px 20px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .breath-title {
    font-family: var(--font-display); font-size: 14px; font-weight: 600;
    color: var(--white); letter-spacing: -0.02em;
  }
  .breath-close {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--whiteA); display: flex; align-items: center;
    justify-content: center; font-size: 12px; color: var(--muted);
  }
  .breath-center {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 20px;
  }
  .breath-ring-wrap {
    position: relative; width: 160px; height: 160px;
    margin-bottom: 28px;
  }
  .breath-ring-outer {
    width: 160px; height: 160px; border-radius: 50%;
    border: 1.5px solid rgba(232,145,58,0.2);
    display: flex; align-items: center; justify-content: center;
    animation: breathe 4s ease-in-out infinite;
  }
  .breath-ring-mid {
    width: 120px; height: 120px; border-radius: 50%;
    border: 1.5px solid rgba(232,145,58,0.4);
    display: flex; align-items: center; justify-content: center;
  }
  .breath-ring-inner {
    width: 84px; height: 84px; border-radius: 50%;
    background: var(--amberBg);
    border: 1.5px solid var(--amber);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2px;
  }
  @keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.12); opacity: 1; }
  }
  .breath-phase {
    font-family: var(--font-display); font-size: 11px; font-weight: 600;
    color: var(--amber); letter-spacing: 0.08em; text-transform: uppercase;
  }
  .breath-count {
    font-family: var(--font-display); font-size: 28px; font-weight: 300;
    color: var(--white); letter-spacing: -0.03em; line-height: 1;
  }
  .breath-instruction {
    font-family: var(--font-display); font-size: 20px; font-weight: 500;
    letter-spacing: -0.02em; color: var(--white); margin-bottom: 8px;
    text-align: center;
  }
  .breath-sub {
    font-size: 13px; color: var(--muted); text-align: center; line-height: 1.5;
    max-width: 200px;
  }
  .breath-progress-wrap {
    padding: 0 24px;
  }
  .breath-progress-label {
    display: flex; justify-content: space-between;
    font-size: 11px; color: var(--fog); margin-bottom: 8px;
  }
  .breath-progress-bar {
    height: 3px; background: var(--border); border-radius: 2px; overflow: hidden;
  }
  .breath-progress-fill {
    height: 100%; width: 40%; background: var(--amber); border-radius: 2px;
  }
  .breath-metrics-row {
    display: flex; gap: 10px; padding: 12px 20px 0; margin-top: 12px;
  }
  .breath-metric-chip {
    flex: 1; background: var(--card); border: 1px solid var(--border);
    border-radius: 10px; padding: 10px 12px;
    display: flex; flex-direction: column; gap: 3px;
  }
  .bmchip-label {
    font-size: 9px; color: var(--fog); letter-spacing: 0.08em; text-transform: uppercase;
  }
  .bmchip-val {
    font-family: var(--font-display); font-size: 18px; font-weight: 600;
    letter-spacing: -0.03em; color: var(--white);
  }
  .bmchip-val span { font-size: 11px; color: var(--muted); font-weight: 400; }
  .bmchip-trend {
    font-size: 10px; color: var(--signal);
  }

  /* SCREEN 3: weekly insights */
  .screen-insights {
    padding: 0 0 20px;
  }
  .insights-header {
    padding: 12px 20px 16px;
    display: flex; justify-content: space-between; align-items: flex-start;
  }
  .insights-greeting {
    font-size: 11px; color: var(--muted); margin-bottom: 2px;
  }
  .insights-title {
    font-family: var(--font-display); font-size: 18px; font-weight: 600;
    letter-spacing: -0.02em; color: var(--white);
  }
  .insights-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, var(--amber) 0%, #f0c070 100%);
  }
  .insights-score-card {
    margin: 0 16px 16px;
    background: linear-gradient(135deg, rgba(232,145,58,0.15) 0%, rgba(74,126,227,0.08) 100%);
    border: 1px solid rgba(232,145,58,0.2); border-radius: 18px;
    padding: 20px;
    display: flex; gap: 20px; align-items: center;
  }
  .insights-score-num {
    font-family: var(--font-display); font-size: 56px; font-weight: 700;
    letter-spacing: -0.05em; line-height: 1; color: var(--white);
    flex-shrink: 0;
  }
  .insights-score-num span { font-size: 20px; color: var(--muted); }
  .insights-score-label {
    font-family: var(--font-display); font-size: 14px; font-weight: 600;
    color: var(--white); margin-bottom: 4px;
  }
  .insights-score-sub {
    font-size: 12px; color: var(--soft); line-height: 1.5;
  }
  .insights-chart-section {
    padding: 0 16px 16px;
  }
  .insights-chart-title {
    font-size: 11px; color: var(--muted); letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 12px; font-weight: 500;
  }
  .insights-chart {
    display: flex; align-items: flex-end; gap: 6px; height: 60px;
  }
  .chart-bar-wrap {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .chart-bar {
    width: 100%; border-radius: 4px 4px 0 0;
  }
  .chart-day {
    font-size: 9px; color: var(--fog); text-align: center;
  }
  .insights-events {
    padding: 0 16px;
  }
  .insights-event-row {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0; border-bottom: 1px solid var(--border);
  }
  .insights-event-row:last-child { border-bottom: none; }
  .event-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  }
  .event-info { flex: 1; }
  .event-label {
    font-size: 12px; color: var(--white); font-weight: 500; font-family: var(--font-display);
  }
  .event-time { font-size: 10px; color: var(--fog); }
  .event-badge {
    font-size: 10px; color: var(--signal); font-weight: 500;
    background: rgba(61,214,163,0.1); border-radius: 6px; padding: 2px 7px;
  }

  /* ── VISUAL DIRECTION ── */
  .direction-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px;
  }
  .direction-col-do {
    background: var(--card); border: 1px solid var(--border);
    padding: 40px; border-radius: 12px 0 0 12px;
  }
  .direction-col-dont {
    background: #120A0A; border: 1px solid #2D1515;
    padding: 40px; border-radius: 0 12px 12px 0;
  }
  .dir-col-title {
    font-family: var(--font-display); font-size: 14px; font-weight: 600;
    letter-spacing: 0.02em; margin-bottom: 24px;
    display: flex; align-items: center; gap: 8px;
  }
  .dir-col-title.do { color: var(--signal); }
  .dir-col-title.dont { color: #E05050; }
  .dir-item {
    display: flex; gap: 12px; align-items: flex-start;
    margin-bottom: 16px;
  }
  .dir-item-bullet {
    width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
    margin-top: 2px; display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700;
  }
  .dir-item-bullet.do { background: rgba(61,214,163,0.15); color: var(--signal); }
  .dir-item-bullet.dont { background: rgba(224,80,80,0.15); color: #E05050; }
  .dir-item-text { font-size: 14px; color: var(--soft); line-height: 1.5; }
  .dir-item-text strong { color: var(--white); font-weight: 500; }
  .keywords-row {
    display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap;
  }
  .keyword-chip {
    font-family: var(--font-display); font-size: 24px; font-weight: 700;
    letter-spacing: -0.03em; color: var(--white);
    background: var(--card); border: 1px solid var(--border);
    border-radius: 100px; padding: 10px 24px;
  }

  /* ── TAGLINES ── */
  .taglines-list {
    margin-top: 56px; display: flex; flex-direction: column; gap: 2px;
  }
  .tagline-row {
    padding: 36px 40px; background: var(--card);
    border: 1px solid var(--border); display: flex;
    align-items: center; gap: 40px;
  }
  .tagline-row:first-child { border-radius: 12px 12px 0 0; background: var(--amberBg); border-color: rgba(232,145,58,0.2); }
  .tagline-row:last-child { border-radius: 0 0 12px 12px; }
  .tagline-num {
    font-family: var(--font-display); font-size: 11px; font-weight: 600;
    color: var(--fog); letter-spacing: 0.08em; flex-shrink: 0; width: 32px;
  }
  .tagline-text {
    font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 600; letter-spacing: -0.03em; color: var(--white);
    line-height: 1.2; flex: 1;
  }
  .tagline-row:first-child .tagline-text { color: var(--amber); }
  .tagline-note {
    font-size: 12px; color: var(--fog); max-width: 220px; line-height: 1.5;
  }

  /* ── FOOTER ── */
.page-brand footer {
    padding: 60px 40px; text-align: center;
    border-top: 1px solid var(--border);
  }
  .footer-logo {
    font-family: var(--font-display); font-size: 28px; font-weight: 700;
    letter-spacing: -0.04em; color: var(--white); margin-bottom: 12px;
  }
  .footer-logo em { font-style: normal; color: var(--amber); }
  .footer-sub {
    font-size: 13px; color: var(--fog);
  }

  /* Divider util */
  .divider { height: 1px; background: var(--border); margin: 48px 0; }
  .mt-56 { margin-top: 56px; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
.page-brand nav { padding: 0 20px; }
.page-brand nav .nav-links { display: none; }
    .container { padding: 0 20px; }
.page-brand section { padding: 80px 0; }
    .logo-grid { grid-template-columns: 1fr; }
    .logo-card:first-child { border-radius: 12px 12px 0 0; }
    .logo-card:last-child { border-radius: 0 0 12px 12px; }
    .mockups-grid { grid-template-columns: 1fr; }
    .copy-grid { grid-template-columns: 1fr; }
    .copy-card:first-child { grid-column: 1; }
    .direction-grid { grid-template-columns: 1fr; }
    .direction-col-do { border-radius: 12px 12px 0 0; }
    .direction-col-dont { border-radius: 0 0 12px 12px; }
    .font-pairing { grid-template-columns: 1fr; }
    .font-card:first-child { border-radius: 12px 12px 0 0; }
    .font-card:last-child { border-radius: 0 0 12px 12px; }
    .tagline-row { flex-direction: column; gap: 12px; }
    .type-row { grid-template-columns: 1fr; gap: 12px; }
    .t-display { font-size: 40px; }
  }
