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

    :root {
      --bg: #FAF9F6;
      --bg-surface: #FFFFFF;
      --line: #E5E4E0;
      --text: #111111;
      --text-dim: #4B4B48;
      --muted: #8A8984;
      --accent: #000000;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      font-size: 15px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::selection {
      background: rgba(0, 0, 0, 0.08);
      color: var(--accent);
    }

    .wrap {
      padding-left: 56px;
      padding-right: 56px;
    }

    .blue-zone {
      --bg: #F4F3EE;
      --bg-surface: #FFFFFF;
      --line: #DDDCD6;
      --text: #111111;
      --text-dim: #4B4B48;
      --muted: #8A8984;
      background-color: var(--bg);
      color: var(--text);
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: #FAF9F6;
      border-bottom: 1px solid var(--line);
    }

    .nav-wrap {
      padding-left: 56px;
      padding-right: 56px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 19px;
      color: var(--text);
      letter-spacing: -0.5px;
      text-decoration: none;
    }

    .logo-icon {
      width: 16px;
      height: 16px;
      background: var(--text);
      border-radius: 2px;
      display: inline-block;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-right {
      display: flex;
      align-items: center;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-item {
      position: static;
    }

    .nav-btn {
      padding: 6px 16px !important;
      font-size: 13px !important;
    }

    .nav-link {
      color: var(--text-dim);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 8px;
      transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .nav-item:hover .nav-link {
      color: var(--text);
      background: rgba(0, 0, 0, 0.04);
    }

    .chevron-icon {
      opacity: 0.6;
      transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    }

    .nav-item:hover .chevron-icon {
      transform: rotate(180deg);
      opacity: 1;
    }

    /* Dropdown container */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      width: 100%;
      padding: 24px 56px;
      background: #FAF9F6;
      border-bottom: 1px solid var(--line);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 200;
      display: flex;
      justify-content: flex-start;
    }

    .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -24px;
      left: 0;
      right: 0;
      height: 24px;
      background: transparent;
    }

    .page-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 100;
    }

    body.dropdown-active .page-overlay {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-item:hover .dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    /* Styled dropdown box */
    .dropdown-card {
      width: 100%;
      max-width: 800px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
    }

    .dropdown-item {
      display: block;
      padding: 10px 14px;
      border-radius: 6px;
      text-decoration: none;
      transition: background-color 0.15s ease;
      margin-bottom: 2px;
    }

    .dropdown-item:last-of-type {
      margin-bottom: 0;
    }

    .dropdown-item:hover {
      background: rgba(0, 0, 0, 0.03);
    }

    .dropdown-item-title {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 2px;
      transition: color 0.15s ease;
    }

    .dropdown-item:hover .dropdown-item-title {
      color: var(--accent);
    }

    .dropdown-item-desc {
      font-size: 11.5px;
      color: var(--text-dim);
      line-height: 1.45;
    }

    .dropdown-footer {
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid var(--line);
    }

    .dropdown-footer a {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: color 0.15s ease;
    }

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

    .nav-pill,
    .btn {
      background: var(--accent);
      color: #ffffff;
      font-size: 13.5px;
      font-weight: 500;
      padding: 10px 24px;
      border-radius: 9999px;
      border: 1px solid var(--accent);
      cursor: pointer;
      transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-secondary {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--line);
    }

    .btn-secondary:hover {
      background: rgba(0, 0, 0, 0.03);
      border-color: var(--text);
    }

    .nav-pill:hover,
    .btn:hover {
      background: #2E2E2D;
      border-color: #2E2E2D;
    }

    section {
      border-bottom: 1px solid var(--line);
    }

    section#stats {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero {
      padding-top: 140px;
      padding-bottom: 90px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .matrix-canvas {
      width: 100%;
      height: 400px;
      background: transparent;
      border-radius: 20px;
      position: relative;
    }
    
    .matrix-canvas svg {
      width: 100%;
      height: 100%;
    }

    /* Announcement Pill style */
    .announcement-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(0, 102, 255, 0.04);
      border: 1px solid rgba(0, 102, 255, 0.12);
      border-radius: 9999px;
      padding: 4px 14px 4px 4px;
      text-decoration: none;
      color: var(--text-dim);
      margin-bottom: 24px;
      transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
      width: fit-content;
    }

    .announcement-pill:hover {
      background: rgba(0, 102, 255, 0.08);
      border-color: rgba(0, 102, 255, 0.24);
      color: var(--text);
      transform: translateY(-1px);
    }

    .announcement-pill .badge {
      background: #0066FF;
      color: #ffffff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: -0.1px;
      padding: 4px 10px;
      border-radius: 9999px;
      line-height: 1;
      display: inline-block;
    }

    .announcement-pill .announcement-text {
      font-size: 12.5px;
      letter-spacing: -0.1px;
      font-weight: 500;
      line-height: 1;
    }

    .announcement-pill .announcement-arrow {
      font-size: 13px;
      opacity: 0.6;
      transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
      line-height: 1;
      display: inline-flex;
      align-items: center;
    }

    .announcement-pill:hover .announcement-arrow {
      opacity: 1;
      transform: translateX(3px);
    }

    .hero h1 {
      font-family: 'Ovo', serif;
      font-size: 76px;
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -2.5px;
      margin-bottom: 32px;
      max-width: 900px;
      color: var(--text);
    }

    .hero h1 .dim {
      color: var(--muted);
    }

    .hero p {
      font-size: 21px;
      color: var(--text-dim);
      max-width: 680px;
      line-height: 1.5;
      margin-bottom: 40px;
      letter-spacing: -0.2px;
    }

    .typing-demo-section {
      border-bottom: 0.5px solid var(--line);
      position: relative;
      overflow: hidden;
      background: var(--bg);
    }

    #capabilities {
      padding-top: 32px;
      padding-bottom: 120px;
    }

    .hero .hero-visual-large {
      margin: 0 0 24px 0;
    }

    .hero-visual-large {
      width: 100%;
      max-width: 680px;
      margin: 0 auto;
      text-align: left;
      position: relative;
      z-index: 1;
    }

    .hero-visual-large::before {
      content: '';
      position: absolute;
      top: -120px;
      left: -120px;
      right: -120px;
      bottom: -120px;
      background: radial-gradient(circle, rgba(165, 142, 112, 0.12) 0%, rgba(200, 185, 160, 0.05) 45%, transparent 70%);
      filter: blur(65px);
      z-index: -1;
      pointer-events: none;
      opacity: 0.85;
    }

    .hv-bar-large {
      display: flex;
      align-items: flex-end;
      gap: 14px;
      padding: 8px 8px 8px 16px;
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 26px;
      font-size: 16.5px;
      color: var(--text);
      box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.03),
        0 0 40px rgba(165, 142, 112, 0.02);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .hv-bar-large:focus-within {
      border-color: var(--text);
      box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.05),
        0 0 40px rgba(0, 0, 0, 0.04);
    }

    .hv-icon-plus {
      color: rgba(0, 0, 0, 0.35);
      flex-shrink: 0;
      margin-bottom: 6px;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .hv-icon-plus:hover {
      color: rgba(0, 0, 0, 0.85);
    }

    .hv-input-wrapper {
      flex: 1;
      min-width: 0;
      line-height: 1.5;
      word-break: break-word;
      overflow-wrap: break-word;
      text-align: left;
      margin-top: 6px;
      margin-bottom: 6px;
    }

    #hv-text:empty::before {
      content: "Describe an operational objective for Trize...";
      color: rgba(0, 0, 0, 0.35);
    }

    #hv-text:empty + .hv-cursor-large {
      display: none;
    }

    .hv-right-group {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
      align-self: flex-end;
    }

    .hv-icon-large {
      color: rgba(0, 0, 0, 0.35);
      flex-shrink: 0;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .hv-icon-large:hover {
      color: rgba(0, 0, 0, 0.85);
    }

    .sound-wave {
      display: flex;
      align-items: center;
      gap: 2.5px;
      height: 18px;
      flex-shrink: 0;
      width: 18px;
      justify-content: center;
    }
    .sound-wave .bar {
      width: 3px;
      height: 6px;
      background: #1A73E8;
      border-radius: 3px;
      animation: bounce 0.8s infinite ease-in-out;
    }
    .sound-wave .bar:nth-child(1) { animation-delay: -0.4s; }
    .sound-wave .bar:nth-child(2) { animation-delay: -0.2s; }
    .sound-wave .bar:nth-child(3) { animation-delay: 0s; }

    @keyframes bounce {
      0%, 100% { height: 6px; }
      50% { height: 14px; }
    }

    .hv-send-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.05);
      color: rgba(0, 0, 0, 0.35);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hv-send-btn.active {
      background: #121212;
      color: #ffffff;
    }

    .hv-send-btn svg {
      transition: transform 0.2s ease;
    }

    .hv-send-btn.active:hover svg {
      transform: translateY(-1px);
    }

    .hv-cursor-large {
      display: inline-block;
      width: 2.5px;
      height: 20px;
      background: #1A73E8;
      margin-left: 4px;
      vertical-align: -2px;
      animation: blink 1s step-end infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .hv-result-large {
      position: absolute;
      top: calc(100% + 16px);
      left: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 18px 28px;
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 16px;
      color: var(--text);
      opacity: 0;
      transform: translateY(-8px);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
      box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.03),
        0 0 20px rgba(0, 0, 0, 0.02);
    }

    .hv-result-large.show {
      opacity: 1;
      transform: translateY(0);
    }

    .sound-wave-large {
      display: flex;
      align-items: center;
      gap: 3px;
      height: 24px;
      flex-shrink: 0;
      width: 24px;
      justify-content: center;
    }

    .sound-wave-large .bar {
      width: 4px;
      height: 8px;
      background: #1A73E8;
      border-radius: 4px;
      animation: bounce-large 0.8s infinite ease-in-out;
    }
    .sound-wave-large .bar:nth-child(1) { animation-delay: -0.4s; }
    .sound-wave-large .bar:nth-child(2) { animation-delay: -0.2s; }
    .sound-wave-large .bar:nth-child(3) { animation-delay: 0s; }

    @keyframes bounce-large {
      0%, 100% { height: 8px; }
      50% { height: 20px; }
    }

    .cols {
      padding-top: 80px;
      padding-bottom: 100px;
    }

    .typing-demo-cols {
      padding-top: 120px;
      padding-bottom: 0;
    }

    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 40px;
      display: block;
    }

    #products {
      background-color: #1e6d4a; /* Adjusted green background */
      color: #ffffff;
      padding-top: 120px;
      padding-bottom: 120px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: flex-start;
    }

    .philosophy-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 64px;
      align-items: flex-start;
    }

    .product-details-sticky {
      position: sticky;
      top: 150px;
    }

    .product-details-sticky h2 {
      font-family: 'Ovo', serif;
      font-size: 56px;
      font-weight: 400;
      margin-bottom: 24px;
    }

    .product-details-sticky p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      max-width: 400px;
    }

    .product-showcase {
      display: flex;
      flex-direction: column;
      gap: 64px;
    }

    .product-reveal-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      overflow: hidden;
    }

    .reveal-visual {
      height: 300px;
      width: 100%;
    }

    .reveal-text {
      padding: 40px;
    }

    .reveal-visual svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .reveal-text h3 {
      font-size: 32px;
      font-family: 'Ovo', serif;
      font-weight: 400;
      margin-bottom: 16px;
    }

    .reveal-text p {
      font-size: 16px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.7);
    }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    .bento-box {
      padding: 56px;
      background: var(--bg-surface);
      border: 1px solid var(--line);
      border-radius: 0px;
      transition: border-color 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 280px;
    }

    .bento-box:hover {
      border-color: var(--text);
    }

    .icon {
      width: 20px;
      height: 20px;
      color: var(--text);
      margin-bottom: 32px;
      display: block;
    }

    .bento-box h3 {
      font-size: 22px;
      font-family: 'Ovo', serif;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .bento-box p {
      font-size: 15px;
      color: var(--text-dim);
      line-height: 1.6;
      margin-bottom: 32px;
    }

    .bento-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: auto;
      transition: transform 0.15s ease;
    }

    .bento-link:hover {
      transform: translateX(4px);
    }

    .stat {
      padding-top: 100px;
      padding-bottom: 100px;
      display: flex;
      align-items: center;
      gap: 48px;
    }

    .stat-big {
      font-family: 'Ovo', serif;
      font-size: 110px;
      font-weight: 400;
      letter-spacing: -3px;
      line-height: 1;
      color: var(--text);
    }

    .stat-desc {
      font-size: 17px;
      color: var(--text-dim);
      max-width: 400px;
      line-height: 1.6;
    }

    .trize-showcase {
      padding-top: 120px;
      padding-bottom: 120px;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 96px;
      align-items: center;
    }

    .trize-showcase h2 {
      font-family: 'Ovo', serif;
      font-size: 48px;
      font-weight: 400;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 24px;
      color: var(--text);
    }

    .trize-showcase p {
      font-size: 18px;
      color: var(--text-dim);
      line-height: 1.6;
      max-width: 460px;
    }

    .console-box {
      background: #FFFFFF;
      border: 1px solid var(--line);
      border-radius: 0px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 16px 40px rgba(0,0,0,0.02);
    }

    .console-header {
      background: #FAF9F6;
      border-bottom: 1px solid var(--line);
      padding: 16px 24px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .console-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .console-title {
      font-family: 'JetBrains Mono', monospace, Courier;
      font-size: 11px;
      color: var(--muted);
      margin-left: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .console-body {
      padding: 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .console-log-row {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      opacity: 0.35;
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .console-log-row.active-step {
      opacity: 1;
    }

    .log-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--line);
      margin-top: 6px;
      flex-shrink: 0;
      transition: background-color 0.4s ease, box-shadow 0.4s ease;
    }

    .console-log-row.active-step .log-indicator {
      background: var(--text);
      box-shadow: 0 0 8px rgba(0,0,0,0.25);
    }

    .console-log-row.completed-step .log-indicator {
      background: #27C93F;
    }

    .log-content {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .log-module {
      font-family: 'JetBrains Mono', monospace, Courier;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--muted);
      transition: color 0.4s ease;
    }

    .console-log-row.active-step .log-module {
      color: var(--text);
    }

    .log-status {
      font-family: 'JetBrains Mono', monospace, Courier;
      font-size: 10px;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.5px;
      transition: color 0.4s ease;
    }

    .console-log-row.active-step .log-status {
      color: var(--text);
    }

    .log-text {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.5;
      margin: 0 !important;
      transition: color 0.4s ease;
    }

    .console-log-row.active-step .log-text {
      color: var(--text);
    }

    .waitlist {
      padding-top: 180px;
      padding-bottom: 180px;
      text-align: center;
    }

    .waitlist h2 {
      font-family: 'Ovo', serif;
      font-size: 56px;
      font-weight: 400;
      letter-spacing: -2px;
      margin-bottom: 24px;
      color: var(--text);
    }

    .waitlist p {
      font-size: 20px;
      color: var(--text-dim);
      margin-bottom: 48px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .email-row {
      display: inline-flex;
      align-items: center;
      background: #FFFFFF;
      border-radius: 9999px;
      padding: 6px;
      border: 1px solid var(--line);
      transition: border-color 0.2s ease;
    }

    .email-row:focus-within {
      border-color: var(--text);
    }

    .email-row input {
      background: transparent;
      border: none;
      outline: none;
      padding: 8px 24px;
      font-family: inherit;
      font-size: 15px;
      color: var(--text);
      width: 320px;
    }

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

    .email-row button {
      background: var(--accent);
      color: #ffffff;
      border: none;
      padding: 10px 24px;
      font-family: inherit;
      font-size: 13.5px;
      font-weight: 500;
      cursor: pointer;
      border-radius: 9999px;
      transition: background 0.15s ease;
    }

    .email-row button:hover {
      background: #2E2E2D;
    }

    .pro-footer {
      background-color: #121212;
      color: #ffffff;
    }
    
    .pro-footer .footer-wrap {
      padding: 100px 56px 56px 56px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 40px;
    }

    .pro-footer h4, .pro-footer a, .pro-footer p {
      color: #ffffff !important;
      text-decoration: none !important;
    }

    .fg-group a {
      display: block;
      margin-bottom: 8px;
    }

    .pro-footer .tagline {
      opacity: 0.7;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 40px;
      border-top: 1px solid rgba(229, 228, 224, 0.3);
    }

    .fb-socials {
      display: flex;
      gap: 32px;
    }

    .fb-socials a {
      font-size: 14px;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.15s;
    }

    .fb-socials a:hover {
      color: var(--text);
    }

    .f-copy {
      font-size: 14px;
      color: var(--muted);
    }

    @media (max-width: 720px) {

      .nav-links {
        display: none;
      }

      .nav-left {
        gap: 0;
      }

      .wrap,
      .nav-wrap,
      .footer-wrap {
        padding-left: 24px;
        padding-right: 24px;
      }

      .hero {
        padding-top: 100px;
        padding-bottom: 40px;
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .product-details-sticky {
        position: relative;
        top: 0;
      }

      #capabilities {
        padding-top: 24px;
        padding-bottom: 80px;
      }

      .typing-demo-cols {
        padding-top: 60px;
        padding-bottom: 0;
      }

      .hv-bar-large {
        padding: 14px 20px;
        font-size: 15px;
        gap: 12px;
        border-radius: 20px;
        align-items: flex-start;
      }

      .hv-cursor-large {
        height: 18px;
        width: 2px;
      }

      .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
      }

      .hero p {
        font-size: 16px;
      }

      .bento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .bento-box {
        padding: 32px;
      }

      .bento-box:nth-child(1),
      .bento-box:nth-child(2),
      .bento-box:nth-child(3),
      .bento-box:nth-child(4) {
        grid-column: span 1;
        grid-row: auto;
      }

      .stat {
        flex-direction: column;
        gap: 24px;
      }

      .stat-big {
        font-size: 80px;
      }

      .trize-showcase {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .waitlist h2 {
        font-size: 40px;
      }

      .email-row {
        flex-direction: column;
        border-radius: 12px;
        width: 100%;
        padding: 8px;
      }

      .email-row input {
        width: 100%;
        text-align: center;
      }

      .email-row button {
        width: 100%;
        border-radius: 8px;
      }

      .footer-wrap {
        padding: 40px 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 48px;
      }

      .fg-brand {
        grid-column: span 2;
      }

      .products-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        transition: none !important;
      }
    }

.legal-content {
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 40px 80px 40px;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.legal-content h1 {
  font-size: 64px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -1.5px;
}
.legal-content h2 {
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-top: 56px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.legal-content p {
  margin-bottom: 16px;
}
.legal-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}
.legal-content li {
  margin-bottom: 8px;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--text-dim);
}
