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

    :root {
      --bg:        #0a0b11;
      --surface:   #141520;
      --surface2:  #1a1b26;
      --border:    #252636;
      --accent:    #8b5cf6;
      --text:      #e8e8ed;
      --muted:     #5a5a6e;
      --label:     #8a8a9e;
      --radius:    12px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── UTILS ── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .label {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--bg);
      border-bottom: 1px solid rgba(37, 38, 54, 0.4);
    }
    .nav-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      height: 56px;
      padding: 0 16px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo img {
      height: 44px;
      width: auto;
      border-radius: 50%;
    }
    .nav-links {
      display: flex;
      align-items: center;
      justify-self: center;
      gap: 20px;
    }
    .nav-link {
      font-size: 14px;
      color: var(--label);
      text-decoration: none;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 6px;
      transition: color 0.15s;
    }
    .nav-link:hover { color: var(--text); }
    .nav-right {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 7px;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.15s, background 0.15s;
      border: none;
      font-family: inherit;
    }
    .btn-primary {
      background: var(--accent);
      color: #fff;
    }
    .btn-primary:hover { opacity: 0.9; }
    .btn-ghost {
      background: transparent;
      color: var(--label);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover { color: var(--text); border-color: #4a4a5a; }
    .nav-mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      color: var(--label);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: calc(100svh - 56px);
      overflow: hidden;
      display: grid;
      place-items: center;
      padding: 86px 0 74px;
      text-align: center;
      isolation: isolate;
    }
    .hero::before,
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: -1;
    }
    .hero::before {
      background:
        radial-gradient(ellipse 54% 32% at 50% 48%, rgba(139, 92, 246, 0.16) 0%, rgba(10, 11, 17, 0) 68%),
        linear-gradient(180deg, rgba(10, 11, 17, 0.08) 0%, rgba(10, 11, 17, 0.18) 62%, var(--bg) 100%),
        linear-gradient(90deg, rgba(10, 11, 17, 0.72) 0%, rgba(10, 11, 17, 0.08) 46%, rgba(10, 11, 17, 0.50) 100%);
    }
    .hero::after {
      background: linear-gradient(180deg, transparent 80%, var(--bg) 100%);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-color: #07080d;
      background-image:
        linear-gradient(rgba(139, 92, 246, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.10) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 256px 256px, 256px 256px, 16px 16px, 16px 16px;
      background-position: center center;
      opacity: 0.86;
      z-index: -2;
    }
    .hero-inner {
      position: relative;
      max-width: 940px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .hero h1 {
      max-width: 740px;
      margin: 0 auto 16px;
      font-size: clamp(36px, 4.8vw, 58px);
      font-weight: 740;
      line-height: 1.03;
      letter-spacing: 0;
      color: #f5f5f8;
      text-wrap: balance;
      text-shadow: 0 12px 36px rgba(0, 0, 0, 0.84);
    }
    .hero-sub {
      font-size: clamp(15px, 1.45vw, 17px);
      color: #dedee7;
      line-height: 1.65;
      max-width: 690px;
      margin: 0 auto 30px;
      text-shadow: 0 10px 28px rgba(0, 0, 0, 0.92);
    }
    .hero-chat-form {
      width: min(100%, 760px);
      margin: 0 auto 28px;
    }
    .hero-chat-heading {
      margin-bottom: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .hero-chat-heading h2 {
      color: #f1f1f5;
      font-size: clamp(20px, 2.2vw, 24px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0;
      text-shadow: 0 10px 32px rgba(0, 0, 0, 0.72);
    }
    .hero-chat-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      color: #a9a8b8;
      border: 1px solid rgba(139, 92, 246, 0.25);
      border-radius: 8px;
      background: rgba(20, 21, 32, 0.72);
      box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
    }
    .hero-chat-icon svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .hero-chat-composer {
      display: flex;
      flex-direction: column;
      gap: 0;
      min-height: 136px;
      border: 1px solid rgba(139, 92, 246, 0.68);
      border-radius: 8px;
      background: rgba(11, 12, 18, 0.88);
      padding: 14px 16px 12px;
      text-align: left;
      box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.10) inset,
        0 24px 80px rgba(0, 0, 0, 0.46);
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    .hero-chat-composer:focus-within {
      border-color: rgba(139, 92, 246, 0.94);
      box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.28) inset,
        0 0 0 2px rgba(139, 92, 246, 0.20),
        0 24px 80px rgba(0, 0, 0, 0.46);
    }
    .hero-chat-textarea {
      width: 100%;
      min-height: 72px;
      resize: none;
      border: 0;
      background: transparent;
      color: #f2f2f6;
      font: inherit;
      font-size: 16px;
      line-height: 1.45;
      outline: none;
      padding: 0;
    }
    .hero-chat-textarea::placeholder { color: rgba(185, 185, 199, 0.62); }
    .hero-chat-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 14px;
    }
    .hero-chat-model {
      display: inline-flex;
      align-items: center;
      min-width: 0;
      height: 30px;
      gap: 6px;
      padding: 0 10px;
      color: #c5c4d0;
      border: 1px solid rgba(37, 38, 54, 0.92);
      border-radius: 999px;
      background: rgba(20, 21, 32, 0.68);
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
    }
    .hero-chat-model svg {
      width: 13px;
      height: 13px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }
    .hero-chat-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      min-width: 86px;
      height: 38px;
      padding: 0 16px;
      color: #fff;
      background: var(--accent);
      border: 0;
      border-radius: 7px;
      font: inherit;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.15s, transform 0.15s;
    }
    .hero-chat-submit:hover { opacity: 0.92; }
    .hero-chat-submit:active { transform: translateY(1px); }
    .hero-chat-submit svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .hero-ctas {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn-large { padding: 12px 28px; font-size: 15px; }

    /* ── TRUST STRIP ── */
    .trust {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 24px 0;
    }
    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .trust-label { font-size: 14px; color: var(--muted); font-weight: 500; }
    .trust-sep { color: var(--border); }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 600;
      color: var(--label);
    }
    .trust-item svg { opacity: 0.7; }

    /* ── SECTIONS ── */
    section { padding: 88px 0; }
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-header h2 {
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-top: 12px;
      color: var(--text);
    }
    .section-header p {
      font-size: 17px;
      color: var(--label);
      max-width: 560px;
      margin: 16px auto 0;
      line-height: 1.65;
    }

    /* ── PROBLEM ── */
    .problem { background: var(--bg); padding-top: 72px; }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .pain-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 24px;
    }
    .pain-icon {
      width: 36px; height: 36px;
      background: rgba(139, 92, 246, 0.10);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      color: var(--accent);
    }
    .pain-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
    .pain-card p { font-size: 16px; color: var(--label); line-height: 1.6; }

    /* ── GROUNDED ── */
    .grounded {
      background: var(--surface2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .pillar-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .pillar-card {
      position: relative;
      min-height: 320px;
      padding: 28px;
      background: rgba(10, 11, 17, 0.62);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }
    .pillar-card::after {
      content: '';
      position: absolute;
      inset: auto 24px 0 24px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.82), transparent);
    }
    .pillar-index {
      display: block;
      width: 34px;
      height: 4px;
      margin-bottom: 26px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 26px rgba(139, 92, 246, 0.54);
    }
    .pillar-card h3 {
      font-size: 19px;
      font-weight: 700;
      line-height: 1.35;
      color: var(--text);
      margin-bottom: 14px;
    }
    .pillar-card h3 em {
      color: #cfcfe0;
      font-style: normal;
      font-weight: 600;
    }
    .pillar-card p {
      color: var(--label);
      font-size: 15px;
      line-height: 1.72;
    }

    /* ── UNKNOWNS ── */
    .unknowns { background: var(--bg); }
    .unknowns-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
      gap: 56px;
      align-items: center;
    }
    .section-header-left {
      text-align: left;
      margin-bottom: 0;
    }
    .section-header-left p {
      margin-left: 0;
      margin-right: 0;
      max-width: 580px;
    }
    .unknowns-panel {
      padding: 18px;
      background:
        linear-gradient(180deg, rgba(139, 92, 246, 0.10), transparent 38%),
        var(--surface);
      border: 1px solid rgba(139, 92, 246, 0.28);
      border-radius: 8px;
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    }
    .unknowns-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 6px 4px 14px;
      color: var(--text);
      font-size: 14px;
      font-weight: 700;
    }
    .unknowns-panel-header strong {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(139, 92, 246, 0.16);
      color: #d8ccff;
      font-size: 13px;
    }
    .unknown-item {
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: rgba(10, 11, 17, 0.72);
    }
    .unknown-item + .unknown-item { margin-top: 12px; }
    .unknown-item.active {
      border-color: rgba(139, 92, 246, 0.62);
      box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.12);
    }
    .unknown-status {
      display: block;
      margin-bottom: 8px;
      color: var(--accent);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .unknown-item h3 {
      margin-bottom: 8px;
      font-size: 17px;
      line-height: 1.3;
      color: var(--text);
    }
    .unknown-item p {
      color: var(--label);
      font-size: 14px;
      line-height: 1.62;
    }

    /* ── HOW IT WORKS ── */
    .how { background: var(--surface2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .steps-list { display: flex; flex-direction: column; gap: 2px; max-width: 780px; margin: 0 auto; }
    .step-item {
      display: flex;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start;
    }
    .step-item:last-child { border-bottom: none; }
    .step-num-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
      padding-top: 2px;
    }
    .step-num {
      width: 32px; height: 32px;
      background: rgba(139, 92, 246, 0.12);
      border: 1px solid rgba(139, 92, 246, 0.35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
      flex-shrink: 0;
    }
    .step-body h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
    .step-body p { font-size: 15px; color: var(--label); line-height: 1.65; }

    /* ── WHO IT'S FOR ── */
    .who { background: var(--bg); }
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .audience-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px;
    }
    .audience-card h3 {
      font-size: 17px;
      color: var(--text);
      line-height: 1.35;
      margin-bottom: 12px;
    }
    .audience-card p {
      font-size: 15px;
      color: var(--label);
      line-height: 1.7;
      margin-bottom: 0;
    }

    /* ── WHO WE ARE ── */
    .about {
      background: var(--surface2);
      border-top: 1px solid var(--border);
    }
    .about-inner {
      max-width: 1040px;
      margin: 0 auto;
      text-align: center;
    }
    .about-inner h2 {
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 700;
      letter-spacing: 0;
      line-height: 1.2;
      margin-bottom: 32px;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
      gap: 56px;
    }
    .team-member {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 0;
    }
    .team-quote {
      max-width: 460px;
      min-height: 210px;
      margin: 0 auto 24px;
      color: #d4d4de;
      font-size: clamp(15px, 1.4vw, 17px);
      font-weight: 500;
      line-height: 1.62;
      letter-spacing: 0;
    }
    .team-photo {
      display: block;
      width: 184px;
      height: 184px;
      aspect-ratio: 1;
      object-fit: cover;
      border-radius: 50%;
      border: 1px solid rgba(139, 92, 246, 0.35);
      margin: 0 auto 24px;
    }
    .team-name {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .team-role {
      color: #b9b9c7;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 16px;
    }
    .team-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .team-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      min-height: 34px;
      padding: 0;
      border-radius: 7px;
      border: 1px solid var(--border);
      color: var(--label);
      text-decoration: none;
      transition: color 0.15s, border-color 0.15s, background 0.15s;
    }
    .team-links a:hover {
      color: var(--text);
      border-color: #4a4a5a;
      background: rgba(255, 255, 255, 0.03);
    }
    .team-links svg {
      width: 17px;
      height: 17px;
      display: block;
    }

    /* ── FORM ── */
    .form-section {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .form-wrap {
      max-width: 840px;
      margin: 0 auto;
      text-align: center;
    }
    .beta-header {
      max-width: 780px;
      margin: 0 auto 40px;
      text-align: center;
    }
    .form-wrap h2 {
      font-size: clamp(24px, 4vw, 34px);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }
    .form-wrap .form-sub {
      font-size: 16px;
      color: var(--label);
      margin-bottom: 0;
      line-height: 1.6;
    }
    .beta-stack {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 780px;
      margin: 0 auto;
    }
    .pricing-note {
      width: 100%;
      padding: 32px 36px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      text-align: left;
    }
    .pricing-note-eyebrow {
      display: block;
      margin-bottom: 6px;
      color: var(--accent);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .pricing-note h3 {
      margin: 0 0 10px;
      color: var(--text);
      font-size: clamp(24px, 4vw, 32px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
    }
    .pricing-note p {
      margin: 0;
      color: var(--label);
      font-size: 14px;
      line-height: 1.6;
    }
    .pricing-note .pricing-note-subtext {
      margin-top: 10px;
      color: var(--muted);
      font-size: 13px;
    }
    /* Tally embed container */
    .tally-wrap {
      width: 100%;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 320px;
    }
    .tally-wrap iframe {
      display: block;
      width: 100%;
      border: none;
    }
    /* Placeholder shown until Tally is connected */
    .tally-placeholder {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      padding: 28px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .form-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      text-align: left;
    }
    .form-field label {
      font-size: 12px;
      font-weight: 600;
      color: var(--label);
      letter-spacing: 0.04em;
    }
    .form-field input,
    .form-field select {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 7px;
      padding: 10px 14px;
      font-size: 14px;
      color: var(--text);
      font-family: inherit;
      outline: none;
      transition: border-color 0.15s;
      appearance: none;
      -webkit-appearance: none;
      width: 100%;
    }
    .form-field input:focus,
    .form-field select:focus { border-color: var(--accent); }
    .form-field input::placeholder { color: var(--muted); }
    .form-submit {
      width: 100%;
      padding: 12px;
      font-size: 15px;
      margin-top: 4px;
      justify-content: center;
    }
    .form-note {
      margin-top: 14px;
      font-size: 12px;
      color: var(--muted);
    }
    #industryOtherField {
      display: grid;
      grid-template-rows: 0fr;
      opacity: 0;
      margin: -6px 0; /* cancel out parent gap */
      transition: grid-template-rows 0.25s ease, opacity 0.25s ease, margin 0.25s ease;
    }
    #industryOtherField > * {
      overflow: hidden;
      min-height: 0;
    }
    #industryOtherField.visible {
      grid-template-rows: 1fr;
      opacity: 1;
      margin: 0;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 28px 0;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-logo { font-size: 15px; font-weight: 700; color: var(--text); text-decoration: none; }
    .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-link { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
    .footer-link:hover { color: var(--label); }
    .footer-copy { font-size: 12px; color: var(--muted); }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-right { display: none; }
      .nav-inner { display: flex; justify-content: space-between; }
      .nav-mobile-toggle { display: block; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 12px 16px;
        z-index: 99;
        gap: 4px;
      }
      .nav-links.open .nav-link { display: block; padding: 10px 12px; }
      .hero {
        min-height: 680px;
        padding: 84px 0 64px;
      }
      .hero-bg {
        inset: 0;
        background-size: 192px 192px, 192px 192px, 16px 16px, 16px 16px;
        background-position: center center;
        opacity: 0.74;
      }
      .pain-grid { grid-template-columns: 1fr; }
      .pillar-grid,
      .audience-grid,
      .unknowns-layout { grid-template-columns: 1fr; }
      .pillar-card { min-height: 0; }
      .unknowns-layout { gap: 34px; }
      .team-grid { grid-template-columns: 1fr; gap: 44px; }
      .team-quote { min-height: 0; }
      .team-photo { width: 156px; height: 156px; }
      section { padding: 64px 0; }
      .beta-header { margin-bottom: 28px; }
      .pricing-note { padding: 24px 22px; }
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
      .step-item { gap: 16px; }
    }

    @media (max-width: 480px) {
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-ctas .btn { justify-content: center; }
      .btn-large { padding: 13px 24px; }
      .hero h1 { font-size: clamp(34px, 10vw, 46px); }
      .hero-chat-composer { padding: 12px; }
      .hero-chat-footer { align-items: stretch; }
      .hero-chat-model { max-width: 154px; }
      .hero-chat-submit { min-width: 80px; padding: 0 13px; }
      .unknowns-panel { padding: 14px; }
      .unknown-item { padding: 16px; }
    }
