﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue: #1363c6;
    --blue-light: #2d7de0;
    --blue-dim: rgba(19, 99, 198, 0.15);
    --blue-glow: rgba(19, 99, 198, 0.35);
    --dark-bg: #080c12;
    --dark-surface: #0d1320;
    --dark-card: #111827;
    --dark-border: rgba(255,255,255,0.08);
    --dark-border-hover: rgba(255,255,255,0.15);
    --text-primary: #f0f4ff;
    --text-secondary: rgba(240,244,255,0.55);
    --text-tertiary: rgba(240,244,255,0.32);
    --light-bg: #ffffff;
    --light-surface: #f8fafc;
    --light-border: #e2e8f0;
    --light-text: #0f172a;
    --light-text-secondary: #475569;
    --mono: 'Geist Mono', monospace;
    --sans: 'Geist', sans-serif;
  }

  html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
  }

  @supports not (scrollbar-gutter: stable) {
    html {
      overflow-y: scroll;
    }
  }

  body {
    font-family: var(--sans);
    background: var(--dark-bg);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Section */
  .marketing-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    z-index: 1100;
    height: 60px;
    padding: 0;
    background: rgba(8, 12, 18, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
  }

  .marketing-nav-inner {
    width: 100%;
    max-width: 1260px;
    height: 60px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .marketing-nav,
  .marketing-nav * {
    box-sizing: border-box;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.3px;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .nav-logo:hover,
  .nav-logo:focus,
  .nav-logo:visited {
    color: var(--text-primary);
    text-decoration: none;
  }

  .nav-logo-text {
    color: inherit;
  }

  .nav-logo-mark {
    width: 28px; height: 28px;
    background: var(--blue);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    flex-shrink: 0;
  }

  .nav-logo-image {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: block;
    flex-shrink: 0;
  }

  .nav-left-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }

  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 450;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
  }

  .nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .nav-mobile-toggle {
    display: none;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--dark-border);
    background: rgba(255,255,255,0.04);
    color: var(--text-primary);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
  }

  .nav-mobile-toggle:hover {
    border-color: var(--dark-border-hover);
    background: rgba(255,255,255,0.08);
  }

  .nav-mobile-toggle span {
    width: 14px;
    height: 1.5px;
    border-radius: 1px;
    background: currentColor;
    transition: transform 0.16s ease, opacity 0.16s ease;
  }

  .marketing-nav.is-mobile-menu-open .nav-mobile-toggle span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .marketing-nav.is-mobile-menu-open .nav-mobile-toggle span:nth-child(2) {
    opacity: 0;
  }

  .marketing-nav.is-mobile-menu-open .nav-mobile-toggle span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .nav-mobile-menu {
    display: none;
  }

  .marketing-nav .btn-ghost,
  .marketing-nav .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    min-height: 36px;
    padding: 0 16px;
    line-height: 1;
    white-space: nowrap;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .btn-ghost {
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--text-secondary);
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 450;
    cursor: pointer;
    font-family: var(--sans);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
  }

  .btn-ghost:hover { border-color: var(--dark-border-hover); color: var(--text-primary); background: rgba(255,255,255,0.04); }

  .nav-dashboard-btn {
    border-color: rgba(19, 99, 198, 0.42);
    background: rgba(19, 99, 198, 0.16);
    color: #dbeafe;
    box-shadow: inset 0 0 0 1px rgba(19, 99, 198, 0.16);
  }

  .nav-dashboard-btn:hover {
    border-color: rgba(45, 125, 224, 0.62);
    background: rgba(19, 99, 198, 0.24);
    color: #f0f7ff;
  }

  .btn-primary {
    background: var(--blue);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--sans);
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
  }

  .btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }

  /* Section */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(19,99,198,0.22) 0%, rgba(19,99,198,0.08) 40%, transparent 70%);
    pointer-events: none;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19,99,198,0.12);
    border: 1px solid rgba(19,99,198,0.3);
    border-radius: 100px;
    padding: 5px 14px 5px 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: #7ab3f5;
    margin-bottom: 32px;
    letter-spacing: 0.01em;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--blue-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--blue-light);
    animation: heroBadgePulse 2s ease infinite;
  }

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

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero h1 {
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    max-width: 900px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease 0.1s both;
  }

  .hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero h1 span {
    background: linear-gradient(135deg, #4d9eff 0%, #1363c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeUp 0.6s ease 0.2s both;
  }

  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 72px;
    animation: fadeUp 0.6s ease 0.3s both;
  }

  .btn-hero-primary {
    background: var(--blue);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
    box-shadow: 0 0 30px rgba(19,99,198,0.4);
  }

  .btn-hero-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(19,99,198,0.6);
  }

  .btn-hero-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--dark-border);
    transition: background 0.15s, color 0.15s, border-color 0.15s;
  }

  .btn-hero-ghost:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); border-color: var(--dark-border-hover); }

  /* Section */
  .hero-product {
    position: relative;
    width: 100%;
    max-width: 1040px;
    animation: fadeUp 0.8s ease 0.4s both;
  }

  .stats-strip {
    background: #0a0f1a;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 24px;
  }

  .stats-strip-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
  }

  .stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    position: relative;
    text-align: center;
  }

  .stat-item + .stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.08);
  }

  .stat-num {
    color: #f0f4ff;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
    margin-bottom: 6px;
  }

  .stat-label {
    color: rgba(240,244,255,0.38);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* Section */
  .free-tool-section {
    background: transparent;
    padding: 44px 24px 86px;
  }

  .free-tool-inner {
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(180deg, #fcfeff 0%, #f5f9ff 100%);
    border: 1px solid #dce5f3;
    border-radius: 20px;
    padding: 40px 38px;
    box-shadow: 0 14px 42px rgba(15, 21, 35, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    color: #0f1523;
  }

  .free-tool-header {
    margin-bottom: 26px;
  }

  .free-tool-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #0f1523;
  }

  .free-tool-sub {
    font-size: 16px;
    color: #5e6f91;
    line-height: 1.65;
    max-width: 760px;
  }

  .free-tool-form {
    display: block;
  }

  .free-tool-steps {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .free-tool-step {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1px solid #d9e3f2;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 13px;
    color: #41557c;
  }

  .free-tool-step span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ebf2ff;
    border: 1px solid #c9dcfa;
    color: #1363c6;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .free-tool-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 20px;
  }

  .free-tool-upload {
    border: 2px dashed #86afe8;
    border-radius: 14px;
    background: #f4f9ff;
    min-height: 292px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 28px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 20px rgba(18, 44, 84, 0.06);
    transition: border-color 0.15s, background 0.15s, transform 0.1s, box-shadow 0.15s;
  }

  .free-tool-upload.is-dragover,
  .free-tool-upload:hover {
    border-color: #5f93df;
    background: #edf4ff;
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 14px 28px rgba(19, 51, 95, 0.12);
  }

  .free-tool-upload-trigger {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    border: 1px solid #cfe1fb;
    background: #ffffff;
    color: #1363c6;
    font-size: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .free-tool-upload-icon {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .free-tool-upload-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1f335a;
  }

  .free-tool-upload-sub {
    font-size: 14px;
    color: #5e6f91;
  }

  .free-tool-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .free-tool-label {
    font-size: 12px;
    color: #4f6286;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .free-tool-select,
  .free-tool-textarea {
    width: 100%;
    border: 1px solid #becfe8;
    border-radius: 10px;
    background: #ffffff;
    color: #1b2942;
    font-family: var(--sans);
    font-size: 15px;
    padding: 13px 14px;
    outline: none;
    box-shadow: 0 2px 10px rgba(15, 33, 60, 0.04);
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  }

  .free-tool-select {
    min-height: 48px;
  }

  .free-tool-select:focus,
  .free-tool-textarea:focus {
    border-color: #1363c6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(19, 99, 198, 0.22);
  }

  .free-tool-select option {
    color: #1b2942;
    background: #ffffff;
  }

  .free-tool-textarea::placeholder {
    color: #8ca0c2;
  }

  .free-tool-textarea {
    min-height: 230px;
    resize: vertical;
    line-height: 1.55;
  }

  .free-tool-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
  }

  .free-tool-submit {
    background: var(--blue);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 13px 22px;
    font-size: 15px;
    font-weight: 650;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
    box-shadow: 0 10px 30px rgba(19, 99, 198, 0.28);
  }

  .free-tool-submit:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
  }

  .free-tool-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .hero-product-frame {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.04),
      0 40px 120px rgba(0,0,0,0.8),
      0 0 80px rgba(19,99,198,0.12);
  }

  .hero-product-image {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-product-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--dark-border);
    background: rgba(255,255,255,0.02);
  }

  .topbar-dot { width: 10px; height: 10px; border-radius: 50%; }
  .topbar-dot-red { background: #ff5f57; }
  .topbar-dot-yellow { background: #febc2e; }
  .topbar-dot-green { background: #28c840; }

  .topbar-url {
    margin-left: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    padding: 4px 14px;
    font-size: 12px;
    font-family: var(--mono);
    color: var(--text-tertiary);
    flex: 1;
    max-width: 280px;
    text-align: center;
  }

  .hero-app {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 420px;
  }

  .app-sidebar {
    background: rgba(255,255,255,0.01);
    border-right: 1px solid var(--dark-border);
    padding: 20px 0;
  }

  .sidebar-section {
    padding: 0 12px;
    margin-bottom: 20px;
  }

  .sidebar-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 8px;
    margin-bottom: 4px;
  }

  .sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 450;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
  }

  .sidebar-item:hover, .sidebar-item.active {
    background: rgba(19,99,198,0.15);
    color: var(--text-primary);
  }

  .sidebar-item.active { color: #7ab3f5; }

  .sidebar-icon {
    width: 16px; height: 16px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
  }

  .sidebar-icon-blue { background: var(--blue-dim); }
  .sidebar-icon-green { background: rgba(34,211,165,0.15); }
  .sidebar-icon-orange { background: rgba(251,146,60,0.15); }

  .app-main {
    padding: 24px 28px;
  }

  .app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
  }

  .app-title { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }

  .score-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34,211,165,0.12);
    border: 1px solid rgba(34,211,165,0.25);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #22d3a5;
  }

  .score-dot { width: 7px; height: 7px; background: #22d3a5; border-radius: 50%; }

  .match-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .match-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 14px;
  }

  .match-card-label { font-size: 11px; color: var(--text-tertiary); margin-bottom: 8px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
  .match-card-value { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; }
  .match-card-sub { font-size: 11px; color: var(--text-tertiary); margin-top: 4px; }

  .value-green { color: #22d3a5; }
  .value-blue { color: #4d9eff; }
  .value-amber { color: #fb923c; }

  .progress-bar-wrap {
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    height: 5px;
    margin-top: 8px;
    overflow: hidden;
  }

  .progress-bar { height: 100%; border-radius: 4px; }
  .pb-green { background: linear-gradient(90deg, #22d3a5, #0fa882); width: 87%; }
  .pb-blue { background: linear-gradient(90deg, #4d9eff, #1363c6); width: 73%; }
  .pb-amber { background: linear-gradient(90deg, #fb923c, #f97316); width: 42%; }

  .skills-section { margin-top: 16px; }
  .skills-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .skills-title { font-size: 13px; font-weight: 600; color: var(--text-primary); }
  .skills-action { font-size: 12px; color: var(--blue-light); cursor: pointer; }

  .skills-grid { display: flex; flex-wrap: wrap; gap: 6px; }

  .skill-tag {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid;
  }

  .skill-match { background: rgba(34,211,165,0.1); border-color: rgba(34,211,165,0.25); color: #22d3a5; }
  .skill-partial { background: rgba(251,146,60,0.1); border-color: rgba(251,146,60,0.25); color: #fb923c; }
  .skill-missing { background: rgba(255,255,255,0.04); border-color: var(--dark-border); color: var(--text-tertiary); text-decoration: line-through; }

  /* Section */
  .logos-section {
    background: var(--dark-bg);
    padding: 48px 24px;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
  }

  .logos-label {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }

  .logo-item {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-tertiary);
    letter-spacing: -0.02em;
    transition: color 0.2s;
  }

  .logo-item:hover { color: var(--text-secondary); }

  /* Section */
  .light-section {
    background: var(--light-bg);
    color: var(--light-text);
  }

  /* Section */
  .features-intro {
    padding: 100px 24px 80px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
  }

  .eyebrow-line {
    width: 20px; height: 1.5px;
    background: var(--blue);
    border-radius: 1px;
  }

  .section-headline {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    max-width: 640px;
    margin-bottom: 20px;
    color: var(--light-text);
  }

  .section-sub {
    font-size: 17px;
    color: var(--light-text-secondary);
    max-width: 520px;
    line-height: 1.65;
    font-weight: 400;
  }

  /* Section */
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    padding: 0 24px 100px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .bento-card {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
  }

  .bento-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  }

  .bento-card.col-7 { grid-column: span 7; }
  .bento-card.col-5 { grid-column: span 5; }
  .bento-card.col-4 { grid-column: span 4; }
  .bento-card.col-8 { grid-column: span 8; }

  .bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(19,99,198,0.08);
    border: 1px solid rgba(19,99,198,0.15);
    color: var(--blue);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
  }

  .bento-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--light-text);
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .bento-desc {
    font-size: 14.5px;
    color: var(--light-text-secondary);
    line-height: 1.6;
  }

  .bento-visual {
    margin-top: 24px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--light-border);
  }

  /* Mini score widget */
  .mini-score-widget {
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  }

  .msw-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
  .msw-title { font-size: 13px; font-weight: 600; color: var(--light-text); }
  .msw-score { font-size: 22px; font-weight: 800; color: #22d3a5; letter-spacing: -0.03em; }
  .msw-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
  .msw-bar-label { font-size: 12px; color: var(--light-text-secondary); width: 90px; flex-shrink: 0; }
  .msw-bar-track { flex: 1; height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden; }
  .msw-bar-fill { height: 100%; border-radius: 3px; }
  .msw-bar-pct { font-size: 11px; color: var(--light-text-secondary); width: 30px; text-align: right; flex-shrink: 0; }

  /* Section */
  .how-section {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 100px 24px;
  }

  .how-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .how-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 32px;
  }

  .how-headline {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    max-width: 480px;
  }

  .how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .how-step {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 28px 24px;
    position: relative;
    transition: border-color 0.2s;
  }

  .how-step:first-child { border-radius: 14px 0 0 14px; }
  .how-step:last-child { border-radius: 0 14px 14px 0; }
  .how-step:not(:last-child) { border-right: none; }

  .how-step:hover { border-color: rgba(19,99,198,0.4); z-index: 1; }

  .step-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .step-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--dark-border);
  }

  .step-media {
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(12, 19, 31, 0.95) 0%, rgba(10, 16, 27, 0.98) 100%);
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
    aspect-ratio: 4 / 3;
  }

  .step-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.25s ease;
  }

  .step-icon {
    width: 40px; height: 40px;
    background: var(--blue-dim);
    border: 1px solid rgba(19,99,198,0.25);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
  }

  .step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
  .step-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }

  .how-step:hover .step-media img {
    transform: scale(1.03);
  }

  /* Section */
  .testimonials-section {
    background: var(--light-bg);
    padding: 100px 24px;
  }

  .testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .testimonials-header { margin-bottom: 56px; }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .testimonial-card {
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: 14px;
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .testimonial-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  }

  .testimonial-card.featured {
    background: var(--light-surface);
    grid-column: span 1;
  }

  .testimonial-stars {
    display: flex; gap: 3px; margin-bottom: 14px;
  }

  .star { color: #fbbf24; font-size: 13px; }

  .testimonial-quote {
    font-size: 14.5px;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
  }

  .testimonial-author {
    display: flex; align-items: center; gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--light-border);
  }

  .author-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }

  .author-name { font-size: 13px; font-weight: 600; color: var(--light-text); }
  .author-role { font-size: 12px; color: var(--light-text-secondary); }

  /* Section */
  .pricing-section {
    background: var(--dark-bg);
    padding: 100px 24px;
    border-top: 1px solid var(--dark-border);
  }

  .pricing-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .pricing-header { margin-bottom: 56px; }

  .pricing-headline {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 16px;
  }

  .pricing-sub { font-size: 17px; color: var(--text-secondary); }

  .pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
  }

  .pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
  }

  .pricing-card.featured {
    border-color: rgba(19,99,198,0.5);
    background: linear-gradient(135deg, rgba(19,99,198,0.08) 0%, var(--dark-card) 60%);
    box-shadow: 0 0 60px rgba(19,99,198,0.12);
  }

  .pricing-plan-name { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px; }
  .pricing-plan-name.blue { color: #7ab3f5; }

  .pricing-price {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 4px;
    line-height: 1;
  }

  .pricing-price-sub { font-size: 13px; color: var(--text-tertiary); margin-bottom: 24px; }

  .pricing-divider { height: 1px; background: var(--dark-border); margin: 24px 0; }

  .pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .pricing-feature-check {
    width: 18px; height: 18px;
    background: rgba(34,211,165,0.12);
    border: 1px solid rgba(34,211,165,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 10px;
    color: #22d3a5;
  }

  .pricing-btn {
    display: block;
    text-align: center;
    margin-top: 28px;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
  }

  .pricing-btn-default {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--dark-border);
    color: var(--text-secondary);
  }

  .pricing-btn-default:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

  .pricing-btn-blue {
    background: var(--blue);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    box-shadow: 0 0 30px rgba(19,99,198,0.35);
  }

  .pricing-btn-blue:hover { background: var(--blue-light); }

  /* Section */
  .guarantee-strip {
    background: rgba(19,99,198,0.07);
    border: 1px solid rgba(19,99,198,0.18);
    border-radius: 14px;
    padding: 28px 32px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }

  .guarantee-icon {
    font-size: 32px;
    flex-shrink: 0;
  }

  .guarantee-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: #7ab3f5; }
  .guarantee-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }

  /* Section */
  .cta-section {
    background: var(--dark-bg);
    padding: 100px 24px;
    border-top: 1px solid var(--dark-border);
  }

  .cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .cta-headline {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 20px;
  }

  .cta-sub {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .cta-buttons { display: flex; align-items: center; justify-content: center; gap: 14px; }

  /* Section */
  footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
    padding: 60px 24px 40px;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand-name { font-size: 14px; font-weight: 700; margin-top: 10px; margin-bottom: 8px; }
  .footer-brand-desc { font-size: 13px; color: var(--text-tertiary); line-height: 1.6; }

  .footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 14px; }

  .footer-links { list-style: none; margin: 0; padding: 0; }
  .footer-links li { margin-bottom: 9px; }
  .footer-links a {
    text-decoration: none;
    font-size: 13.5px;
    color: var(--text-secondary);
    transition: color 0.15s;
  }
  .footer-links a:hover { color: var(--text-primary); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--dark-border);
  }

  .footer-copy { font-size: 13px; color: var(--text-tertiary); }

  .footer-bottom-links { display: flex; gap: 20px; }
  .footer-bottom-links a { font-size: 13px; color: var(--text-tertiary); text-decoration: none; transition: color 0.15s; }
  .footer-bottom-links a:hover { color: var(--text-secondary); }

  /* Section */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Section */
  @media (max-width: 900px) {
    .marketing-nav-inner { padding: 0 18px; }
    .nav-links { display: none; }
    .nav-logo-text { display: none; }
    .nav-mobile-toggle { display: inline-flex; }
    .nav-left-group { margin-right: auto; gap: 8px; }
    .nav-actions { margin-left: 8px; gap: 8px; }
    .nav-mobile-menu {
      display: block;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      background: rgba(8, 12, 18, 0.98);
      border-bottom: 1px solid var(--dark-border);
      padding: 10px 18px 14px;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      pointer-events: none;
      transform: translateY(-6px);
      transition: max-height 0.22s ease, opacity 0.18s ease, transform 0.18s ease;
    }
    .marketing-nav.is-mobile-menu-open .nav-mobile-menu {
      max-height: 260px;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .nav-mobile-link {
      display: block;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.25;
      padding: 10px 10px;
      border-radius: 8px;
      transition: color 0.15s, background 0.15s;
    }
    .nav-mobile-link:hover {
      color: var(--text-primary);
      background: rgba(255,255,255,0.06);
    }
    .free-tool-grid { grid-template-columns: 1fr; }
    .free-tool-upload { min-height: 220px; }
    .free-tool-inner { padding: 32px 26px; }
    .free-tool-actions { justify-content: stretch; }
    .free-tool-submit { width: 100%; }
    .bento-card.col-7, .bento-card.col-5, .bento-card.col-4, .bento-card.col-8 { grid-column: span 12; }
    .how-steps { grid-template-columns: 1fr 1fr; }
    .how-step:first-child { border-radius: 14px 0 0 0; }
    .how-step:nth-child(2) { border-radius: 0 14px 0 0; border-right: 1px solid var(--dark-border); }
    .how-step:nth-child(3) { border-radius: 0 0 0 14px; }
    .how-step:last-child { border-radius: 0 0 14px 0; border-right: 1px solid var(--dark-border); }
    .how-step:not(:last-child) { border-right: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-app { grid-template-columns: 1fr; }
    .app-sidebar { display: none; }
  }

  @media (max-width: 600px) {
    .stats-strip-inner { flex-direction: column; }
    .stat-item { padding: 22px 16px; }
    .stat-item + .stat-item::before {
      left: 20%;
      right: 20%;
      top: 0;
      bottom: auto;
      width: auto;
      height: 1px;
    }
    .free-tool-section { padding: 30px 16px 64px; }
    .free-tool-inner { padding: 26px 18px; border-radius: 14px; }
    .free-tool-steps { gap: 8px; }
    .free-tool-step { font-size: 11px; padding: 5px 10px; }
    .how-steps { grid-template-columns: 1fr; }
  .how-step { border-radius: 10px !important; border-right: 1px solid var(--dark-border) !important; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .match-cards { grid-template-columns: 1fr; }

    .marketing-nav .btn-ghost,
    .marketing-nav .btn-primary {
      height: 32px;
      min-height: 32px;
      padding: 0 12px;
      font-size: 13px;
      white-space: nowrap;
    }
    .nav-left-group { gap: 7px; }

    .hero-ctas,
    .cta-buttons {
      gap: 8px;
    }

    .hero-ctas .btn-hero-primary,
    .hero-ctas .btn-hero-ghost,
    .cta-buttons .btn-hero-primary,
    .cta-buttons .btn-hero-ghost {
      padding: 10px 14px;
      font-size: 13.5px;
      line-height: 1.2;
      white-space: nowrap;
    }
  }

  /* Section */
  .hiw-hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 88px;
  }

  .hiw-hero .hero-sub {
    max-width: 700px;
  }

  .hiw-overview {
    padding: 92px 24px;
  }

  .hiw-overview-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: start;
  }

  .hiw-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hiw-stat-card {
    background: #ffffff;
    border: 1px solid var(--light-border);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 28px rgba(15, 21, 35, 0.06);
  }

  .hiw-stat-value {
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
  }

  .hiw-stat-label {
    font-size: 13px;
    color: var(--light-text-secondary);
    line-height: 1.6;
  }

  .hiw-process {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hiw-header-copy {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 340px;
    line-height: 1.6;
    text-align: right;
  }

  .hiw-step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hiw-step-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    padding: 24px;
    transition: border-color 0.15s, transform 0.15s;
  }

  .hiw-step-card:hover {
    border-color: rgba(19, 99, 198, 0.42);
    transform: translateY(-2px);
  }

  .hiw-step-num {
    font-family: var(--mono);
    font-size: 12px;
    color: #7ab3f5;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
  }

  .hiw-step-card h3 {
    font-size: 20px;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }

  .hiw-step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
  }

  .hiw-engine {
    padding: 92px 24px;
  }

  .hiw-engine-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .hiw-compare-wrap {
    margin-top: 24px;
    border: 1px solid var(--light-border);
    border-radius: 14px;
    overflow-x: auto;
    background: #ffffff;
  }

  .hiw-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
  }

  .hiw-compare-table th,
  .hiw-compare-table td {
    border-bottom: 1px solid var(--light-border);
    padding: 13px 14px;
    text-align: left;
    font-size: 14px;
    color: var(--light-text-secondary);
    line-height: 1.5;
  }

  .hiw-compare-table th {
    background: #f8fbff;
    color: #1f335a;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.01em;
  }

  .hiw-compare-table tbody tr:last-child td {
    border-bottom: none;
  }

  .hiw-compare-table td:nth-child(3),
  .hiw-compare-table th:nth-child(3) {
    color: #0f56ad;
    font-weight: 600;
  }

  .hiw-note {
    margin-top: 16px;
    border: 1px solid #cfdcf3;
    background: #f5f9ff;
    border-radius: 10px;
    padding: 12px 14px;
    color: #334b70;
    font-size: 14px;
  }

  .hiw-template-risk {
    padding: 92px 24px;
    border-top: 1px solid var(--light-border);
  }

  .hiw-template-risk-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .hiw-template-risk-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 16px;
    align-items: stretch;
  }

  .hiw-template-risk-media {
    border: 1px solid var(--light-border);
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 21, 35, 0.06);
  }

  .hiw-template-risk-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hiw-template-risk-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hiw-template-risk-card {
    background: #ffffff;
    border: 1px solid var(--light-border);
    border-radius: 12px;
    padding: 16px 16px 14px;
  }

  .hiw-template-risk-card h3 {
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1f335a;
    margin-bottom: 10px;
  }

  .hiw-template-risk-card ul {
    margin: 0;
    padding-left: 18px;
  }

  .hiw-template-risk-card li {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--light-text-secondary);
  }

  .hiw-template-risk-card li:last-child {
    margin-bottom: 0;
  }

  .hiw-faq-section {
    padding: 92px 24px;
    border-top: 1px solid var(--light-border);
  }

  .hiw-faq-inner {
    max-width: 980px;
    margin: 0 auto;
  }

  .hiw-faq-item {
    background: #ffffff;
    border: 1px solid var(--light-border);
    border-radius: 12px;
    padding: 0 14px;
    margin-top: 10px;
  }

  .hiw-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 2px;
    font-size: 16px;
    color: #1f335a;
    font-weight: 650;
  }

  .hiw-faq-item summary::-webkit-details-marker {
    display: none;
  }

  .hiw-faq-item p {
    padding: 0 2px 14px;
    color: var(--light-text-secondary);
    line-height: 1.7;
    font-size: 14px;
  }

  @media (max-width: 900px) {
    .hiw-overview-inner {
      grid-template-columns: 1fr;
    }

    .hiw-header-copy {
      text-align: left;
      max-width: none;
    }

    .hiw-step-grid {
      grid-template-columns: 1fr;
    }

    .hiw-template-risk-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .hiw-overview,
    .hiw-engine,
    .hiw-faq-section {
      padding-left: 16px;
      padding-right: 16px;
    }

    .hiw-stat-grid {
      grid-template-columns: 1fr;
    }

    .hiw-step-card {
      padding: 18px;
    }
  }

  /* Section */
  .org-hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 84px;
  }

  .org-hero .hero-sub {
    max-width: 640px;
  }

  .org-hero-panel {
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
  }

  .org-hero-panel-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.5;
  }

  .org-hero-panel-item span {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    color: #7ab3f5;
    margin-right: 8px;
  }

  .org-transform {
    padding: 92px 24px;
  }

  .org-transform-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 16px;
    align-items: center;
  }

  .org-transform-copy .section-headline {
    max-width: 560px;
  }

  .org-transform-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .org-light-ghost {
    background: #ffffff;
    color: #334b70;
    border-color: #d4deee;
  }

  .org-light-ghost:hover {
    color: #1f335a;
    background: #f8fbff;
    border-color: #c5d6ef;
  }

  .org-transform-media {
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .org-transform-media img {
    display: block;
    width: 100%;
    height: auto;
  }

  .org-audiences {
    padding: 0 24px 92px;
  }

  .org-audiences-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .org-audiences-head {
    margin-bottom: 24px;
  }

  .org-audiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .org-audience-card {
    background: #ffffff;
    border: 1px solid var(--light-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  }

  .org-audience-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 30px rgba(15, 21, 35, 0.08);
    transform: translateY(-2px);
  }

  .org-audience-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    object-position: center 12%;
    display: block;
  }

  .org-audiences-grid .org-audience-card:first-child img {
    object-position: center 4%;
  }

  .org-audience-card h3 {
    font-size: 19px;
    letter-spacing: -0.02em;
    color: #1f335a;
    padding: 16px 16px 8px;
  }

  .org-audience-card p {
    font-size: 14px;
    color: var(--light-text-secondary);
    line-height: 1.65;
    padding: 0 16px 16px;
  }

  .org-workflow {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .org-workflow-copy {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 360px;
    line-height: 1.65;
    text-align: right;
  }

  .org-api {
    padding: 92px 24px;
  }

  .org-api-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 18px;
    align-items: center;
  }

  .org-api-copy .section-headline {
    max-width: 560px;
  }

  .org-api-actions {
    margin-top: 22px;
    margin-bottom: 16px;
  }

  .org-code-card {
    background: #ffffff;
    border: 1px solid var(--light-border);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.8;
    color: #526583;
  }

  .org-code-card span {
    color: #1363c6;
    font-weight: 600;
  }

  .org-api-media {
    border: 1px solid var(--light-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 21, 35, 0.08);
    background: #ffffff;
  }

  .org-api-media img {
    display: block;
    width: 100%;
    height: auto;
  }

  .org-security {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 92px 24px;
  }

  .org-security-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .org-security-head {
    margin-bottom: 24px;
  }

  .org-security-head h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    max-width: 640px;
    margin-bottom: 14px;
  }

  .org-security-head p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 700px;
  }

  .org-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .org-security-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 18px;
  }

  .org-security-card h3 {
    font-size: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--text-primary);
  }

  .org-security-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
  }

  .org-testimonials {
    border-top: 1px solid var(--light-border);
  }

  @media (max-width: 900px) {
    .org-hero-panel {
      grid-template-columns: 1fr;
    }

    .org-transform-inner,
    .org-api-inner {
      grid-template-columns: 1fr;
    }

    .org-audiences-grid {
      grid-template-columns: 1fr;
    }

    .org-workflow-copy {
      text-align: left;
      max-width: none;
    }

    .org-security-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .org-transform,
    .org-audiences,
    .org-api,
    .org-security {
      padding-left: 16px;
      padding-right: 16px;
    }

    .org-transform-actions {
      flex-direction: column;
      align-items: stretch;
    }

    .org-transform-actions .btn-hero-primary,
    .org-transform-actions .btn-hero-ghost {
      text-align: center;
    }
  }
