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

    :root {
      --coral: #053391;
      --coral-light: #05389e;
      --sand: #f9fbff;
      --ink: #0D0D0D;
      --ink2: #1A1A1A;
      --muted: #6B6B6B;
      --muted2: #9A9A9A;
      --border: #E8E0D8;
      --border2: #D4CCC4;
      --white: #FFFFFF;
      --off: #F5F0EB;
      --green: #00B67A;
      --blue: #2563EB;
      --gold: #F59E0B;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--white);
      color: var(--ink);
      overflow-x: hidden
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border)
    }

    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
      height: 68px;
      display: flex;
      align-items: center;
      gap: 40px
    }

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

    .logo-mark {
      width: 34px;
      height: 34px;
      background: var(--coral);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .logo-mark svg {
      width: 20px;
      height: 20px
    }

    .logo-name {
      font-family: 'Fraunces', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -.02em;
      text-decoration: none;
    }

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

    .nav-link {
      padding: 8px 14px;
      font-size: .875rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      border-radius: 6px;
      cursor: pointer;
      border: none;
      background: none;
      transition: .15s
    }

    .nav-link:hover {
      color: var(--ink);
      background: var(--off)
    }

    .nav-link.has-dropdown {
      display: flex;
      align-items: center;
      gap: 4px
    }

    .nav-link.has-dropdown::after {
      content: '⌄';
      font-size: .7rem;
      opacity: .6
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: auto
    }

    .btn-ghost {
      padding: 8px 18px;
      font-size: .875rem;
      font-weight: 500;
      color: var(--ink);
      text-decoration: none;
      border-radius: 8px;
      border: 1px solid var(--border2);
      background: transparent;
      cursor: pointer;
      transition: .15s;
      font-family: inherit
    }

    .btn-ghost:hover {
      background: var(--off)
    }

    .btn-primary {
      padding: 9px 20px;
      font-size: .875rem;
      font-weight: 600;
      color: #fff;
      background: var(--coral);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: .15s;
      font-family: inherit;
      text-decoration: none
    }

    .btn-primary:hover {
      background: var(--coral-light)
    }

    /* PAGES */
    .page {
      display: block;
      min-height: 100vh;
      padding-top: 68px
    }

    .page.on {
      display: block
    }

    /* HERO */
    .hero {
      background: #f9fbff;
      padding: 100px 32px 80px;
      position: relative;
      overflow: hidden
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(255, 92, 58, .12) 0%, transparent 70%);
      pointer-events: none
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 92, 58, .06) 0%, transparent 70%);
      pointer-events: none
    }

    .hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 6px 14px 6px 10px;
      font-size: .78rem;
      font-weight: 600;
      color: var(--coral);
      margin-bottom: 28px
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--coral);
      border-radius: 50%;
      animation: pulse 2s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .4
      }
    }

    .hero h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.8rem, 4.5vw, 4.2rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -.03em;
      color: var(--ink);
      margin-bottom: 24px
    }

    .hero h1 em {
      font-style: italic;
      color: var(--coral)
    }

    .hero-desc {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 36px
    }

    .hero-cta {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap
    }

    .btn-lg {
      padding: 14px 28px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
      font-family: inherit;
      transition: .2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .btn-lg.primary {
      background: var(--coral);
      color: #fff;
      border: none
    }

    .btn-lg.primary:hover {
      background: var(--coral-light);
      transform: translateY(-1px)
    }

    .btn-lg.outline {
      background: transparent;
      color: var(--ink);
      border: 1.5px solid var(--border2)
    }

    .btn-lg.outline:hover {
      background: var(--off)
    }

    .hero-visual {
      position: relative
    }

    .hero-card {
      background: #fff;
      border-radius: 20px;
      border: 1px solid var(--border);
      padding: 28px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, .08)
    }

    .hero-card-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border)
    }

    .hc-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%
    }

    .hc-dots {
      display: flex;
      gap: 6px
    }

    .hc-title {
      font-size: .78rem;
      color: var(--muted);
      font-weight: 500;
      margin-left: auto
    }

    .chat-msg {
      margin-bottom: 14px
    }

    .chat-msg.user {
      text-align: right
    }

    .chat-bubble {
      display: inline-block;
      padding: 10px 14px;
      border-radius: 12px;
      font-size: .83rem;
      line-height: 1.5;
      max-width: 80%
    }

    .chat-bubble.user {
      background: var(--coral);
      color: #fff;
      border-radius: 12px 12px 2px 12px
    }

    .chat-bubble.ai {
      background: var(--off);
      color: var(--ink);
      border-radius: 12px 12px 12px 2px;
      text-align: left
    }

    .chat-ai-label {
      font-size: .7rem;
      color: var(--muted);
      margin-bottom: 4px;
      font-weight: 500
    }

    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 16px
    }

    .hero-stat {
      background: var(--sand);
      border-radius: 12px;
      padding: 14px;
      text-align: center
    }

    .hero-stat-val {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--ink)
    }

    .hero-stat-label {
      font-size: .72rem;
      color: var(--muted);
      font-weight: 500;
      margin-top: 2px
    }

    /* LOGOS TICKER */
    .logos-section {
      padding: 40px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      background: #fff
    }

    .logos-label {
      text-align: center;
      font-size: .78rem;
      font-weight: 600;
      color: var(--muted2);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 28px
    }

    .ticker-wrap {
      overflow: hidden;
      position: relative
    }

    .ticker-wrap::before,
    .ticker-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none
    }

    .ticker-wrap::before {
      left: 0;
      background: linear-gradient(to right, #fff, transparent)
    }

    .ticker-wrap::after {
      right: 0;
      background: linear-gradient(to left, #fff, transparent)
    }

    .ticker {
      display: flex;
      gap: 60px;
      animation: ticker 30s linear infinite;
      width: max-content
    }

    @keyframes ticker {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .ticker-item {
      font-size: .85rem;
      font-weight: 600;
      color: var(--muted);
      white-space: nowrap;
      flex-shrink: 0
    }
    
    .ticker-item img {
        height: 48px;
        width: auto;
        object-fit: contain;
    }

    /* SECTIONS */
    .section {
      padding: 96px 32px
    }

    .section-inner {
      max-width: 1280px;
      margin: 0 auto
    }

    .section-label {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 16px
    }

    .section-h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -.025em;
      color: var(--ink);
      margin-bottom: 20px
    }

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

    .section-desc {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 560px
    }

    .section.alt {
      background: var(--sand)
    }

    .section.dark {
      background: var(--ink);
      color: #fff
    }

    .section.dark .section-h2 {
      color: #fff
    }

    .section.dark .section-desc {
      color: rgba(255, 255, 255, .65)
    }

    .section.dark .section-label {
      color: var(--coral)
    }

    /* PRODUCT CARDS */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin-top: 56px
    }

    .prod-card {
      background: #fff;
      padding: 36px 32px;
      transition: .2s
    }

    .prod-card:hover {
      background: var(--sand)
    }

    .prod-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.4rem
    }

    .prod-tag {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 10px
    }

    .prod-card h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 10px
    }

    .prod-card p {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.65
    }

    .prod-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .82rem;
      font-weight: 600;
      color: var(--coral);
      margin-top: 16px;
      text-decoration: none
    }

    .prod-link:hover {
      gap: 10px
    }

    /* 3-COL FEATURE */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 56px
    }

    .feat-card {
      padding: 32px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px
    }

    .section.dark .feat-card {
      background: rgba(255, 255, 255, .05);
      border-color: rgba(255, 255, 255, .1)
    }

    .section.dark .feat-card h3 {
      color: #fff
    }

    .section.dark .feat-card p {
      color: rgba(255, 255, 255, .6)
    }

    .feat-icon {
      font-size: 2rem;
      margin-bottom: 20px
    }

    .feat-card h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--ink)
    }

    .feat-card p {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.65
    }

    /* 2-COL SPLIT */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 56px
    }

    .split.rev {
      direction: rtl
    }

    .split.rev>* {
      direction: ltr
    }

    /* SOLUTIONS */
    .sol-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin-top: 56px
    }

    .sol-card {
      background: #fff;
      padding: 28px 24px;
      cursor: pointer;
      transition: .2s
    }

    .sol-card:hover {
      background: var(--sand)
    }

    .sol-card h4 {
      font-size: .95rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 8px
    }

    .sol-card p {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.6
    }

    .sol-icon {
      font-size: 1.5rem;
      margin-bottom: 14px
    }

    /* PRICING */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px
    }

    .price-card {
      padding: 36px 32px;
      border: 1.5px solid var(--border);
      border-radius: 20px;
      background: #fff;
      position: relative
    }

    .price-card.featured {
      border-color: var(--coral);
      background: var(--sand)
    }

    .price-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--coral);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 100px;
      letter-spacing: .06em;
      text-transform: uppercase
    }

    .price-name {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 12px
    }

    .price-val {
      font-family: 'Fraunces', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1
    }

    .price-val span {
      font-size: 1rem;
      font-weight: 500;
      color: var(--muted)
    }

    .price-desc {
      font-size: .85rem;
      color: var(--muted);
      margin: 14px 0 24px;
      line-height: 1.6
    }

    .price-feat {
      font-size: .83rem;
      color: var(--ink);
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 8px
    }

    .price-feat::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0
    }

    /* TESTIMONIALS */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px
    }

    .testi-card {
      padding: 32px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px
    }

    .testi-quote {
      font-size: .93rem;
      color: var(--ink2);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 24px
    }

    .testi-quote::before {
      content: '"';
      font-family: 'Fraunces', serif;
      font-size: 3rem;
      color: var(--coral);
      line-height: .7;
      display: block;
      margin-bottom: 12px
    }

    .testi-person {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .testi-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0
    }

    .testi-name {
      font-size: .85rem;
      font-weight: 700;
      color: var(--ink)
    }

    .testi-role {
      font-size: .78rem;
      color: var(--muted)
    }

    /* RESEARCH */
    .research-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 56px
    }

    .res-card {
      padding: 32px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #fff;
      display: flex;
      gap: 20px
    }

    .res-icon {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0
    }

    .res-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 8px
    }

    .res-card p {
      font-size: .83rem;
      color: var(--muted);
      line-height: 1.65
    }

    .res-card a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .8rem;
      font-weight: 600;
      color: var(--coral);
      margin-top: 12px;
      text-decoration: none
    }

    /* BLOG */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px
    }

    .blog-card {
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
      cursor: pointer;
      transition: .2s
    }

    .blog-card:hover {
      box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
      transform: translateY(-2px)
    }

    .blog-thumb {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem
    }

    .blog-body {
      padding: 24px
    }

    .blog-tag {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 10px
    }

    .blog-card h3 {
      font-size: .95rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.45;
      margin-bottom: 10px
    }

    .blog-card p {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.6
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 16px;
      font-size: .75rem;
      color: var(--muted2)
    }

    /* ABOUT */
    .about-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin-top: 56px
    }

    .about-stat {
      background: #fff;
      padding: 36px;
      text-align: center
    }

    .about-stat-val {
      font-family: 'Fraunces', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--coral)
    }

    .about-stat-label {
      font-size: .875rem;
      color: var(--muted);
      margin-top: 6px;
      line-height: 1.4
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px
    }

    .team-card {
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      background: #fff
    }

    .team-avatar {
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      font-weight: 700;
      color: #fff
    }

    .team-body {
      padding: 16px
    }

    .team-name {
      font-size: .9rem;
      font-weight: 700;
      color: var(--ink)
    }

    .team-role {
      font-size: .78rem;
      color: var(--muted);
      margin-top: 3px
    }

    /* CAREERS */
    .jobs-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin-top: 48px
    }

    .job-row {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px 28px;
      background: #fff;
      border-bottom: 1px solid var(--border);
      transition: .15s;
      cursor: pointer
    }

    .job-row:last-child {
      border-bottom: none
    }

    .job-row:hover {
      background: var(--sand)
    }

    .job-title {
      font-size: .93rem;
      font-weight: 700;
      color: var(--ink);
      flex: 1
    }

    .job-dept {
      font-size: .78rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 100px;
      background: var(--off);
      color: var(--muted)
    }

    .job-loc {
      font-size: .78rem;
      color: var(--muted2)
    }

    .job-apply {
      font-size: .8rem;
      font-weight: 600;
      color: var(--coral);
      padding: 7px 16px;
      border: 1.5px solid var(--coral);
      border-radius: 7px;
      background: transparent;
      cursor: pointer;
      font-family: inherit;
      white-space: nowrap
    }

    .job-apply:hover {
      background: var(--coral);
      color: #fff
    }

    /* CONTACT */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-top: 56px
    }

    .form-group {
      margin-bottom: 20px
    }

    .form-group label {
      display: block;
      font-size: .82rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 8px
    }

    .form-input {
      width: 100%;
      padding: 11px 16px;
      border: 1.5px solid var(--border2);
      border-radius: 10px;
      font-size: .875rem;
      font-family: inherit;
      color: var(--ink);
      background: #fff;
      transition: .15s
    }

    .form-input:focus {
      outline: none;
      border-color: var(--coral)
    }

    textarea.form-input {
      resize: vertical;
      min-height: 120px
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .contact-info h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 16px
    }

    .contact-info p {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 28px
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px
    }

    .contact-detail-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--sand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0
    }

    .contact-detail-text h4 {
      font-size: .85rem;
      font-weight: 700;
      color: var(--ink)
    }

    .contact-detail-text p {
      font-size: .82rem;
      color: var(--muted)
    }

    .security-badge {
      background: var(--sand);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-top: 28px
    }

    .security-badge-icon {
      font-size: 1.5rem
    }

    .security-badge h4 {
      font-size: .85rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 4px
    }

    .security-badge p {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.55
    }

    /* FOOTER */
    footer {
      background: var(--ink2);
      color: rgba(255, 255, 255, .7);
      padding: 64px 32px 40px
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .footer-brand p {
      font-size: .85rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.7;
      margin-top: 16px;
      max-width: 260px
    }

    .footer-col h5 {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 16px
    }

    .footer-link {
      display: block;
      font-size: .85rem;
      color: rgba(255, 255, 255, .6);
      text-decoration: none;
      margin-bottom: 10px;
      transition: .15s
    }

    .footer-link:hover {
      color: #fff
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 32px;
      font-size: .8rem;
      color: rgba(255, 255, 255, .3)
    }

    .footer-logo-name {
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff
    }

    .social-links {
      display: flex;
      gap: 12px
    }

    .social-link {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .5);
      text-decoration: none;
      font-size: .9rem;
      transition: .15s
    }

    .social-link:hover {
      border-color: rgba(255, 255, 255, .4);
      color: #fff
    }

    /* PAGE HEADERS */
    .page-hero {
      background: var(--sand);
      padding: 80px 32px 64px;
      border-bottom: 1px solid var(--border)
    }

    .page-hero-inner {
      max-width: 1280px;
      margin: 0 auto
    }

    .page-hero h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -.025em;
      max-width: 700px
    }

    .page-hero p {
      font-size: 1rem;
      color: var(--muted);
      margin-top: 16px;
      line-height: 1.7;
      max-width: 560px
    }

    /* ACCORDION */
    .faq-list {
      margin-top: 48px
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 20px 0
    }

    .faq-q {
      font-size: .95rem;
      font-weight: 600;
      color: var(--ink);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px
    }

    .faq-q::after {
      content: '＋';
      font-size: 1.2rem;
      color: var(--muted);
      flex-shrink: 0
    }

    .faq-item.open .faq-q::after {
      content: '－'
    }

    .faq-a {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: .3s
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding-top: 12px
    }

    /* CTA STRIP */
    .cta-strip {
      background: var(--coral);
      padding: 64px 32px;
      text-align: center
    }

    .cta-strip h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px
    }

    .cta-strip p {
      font-size: 1rem;
      color: rgba(255, 255, 255, .8);
      margin-bottom: 32px
    }

    .btn-white {
      padding: 13px 28px;
      background: #fff;
      color: var(--coral);
      border: none;
      border-radius: 10px;
      font-size: .95rem;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: .2s
    }

    .btn-white:hover {
      background: var(--sand)
    }

    /* HAMBURGER */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px
    }

    .hamburger span {
      width: 22px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: .3s
    }

    /* MOBILE NAV */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 20px 24px;
      z-index: 999
    }

    .mobile-nav.open {
      display: flex;
      flex-direction: column;
      gap: 4px
    }

    .mobile-nav a,
    .mobile-nav button {
      text-align: left;
      padding: 10px 14px;
      font-size: .9rem;
      font-weight: 500;
      color: var(--ink);
      border: none;
      background: none;
      cursor: pointer;
      border-radius: 8px;
      font-family: inherit
    }

    .mobile-nav a:hover,
    .mobile-nav button:hover {
      background: var(--off)
    }

    /* SECURITY PAGE */
    .sec-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px
    }

    .sec-card {
      padding: 32px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #fff
    }

    .sec-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 10px
    }

    .sec-card p {
      font-size: .83rem;
      color: var(--muted);
      line-height: 1.65
    }

    .cert-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 48px
    }

    .cert-badge {
      padding: 12px 20px;
      border: 1.5px solid var(--border2);
      border-radius: 10px;
      font-size: .83rem;
      font-weight: 700;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 8px
    }
    
    
    /* PRODUCT LISTING PAGE */
.section{padding:80px 32px}
.section.alt{background:var(--sand)}
.section.dark{background:var(--ink2);color:#fff}
.section-inner{max-width:1280px;margin:0 auto}
.section-h2{font-family:'Fraunces',serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:700;line-height:1.15;letter-spacing:-.025em;margin-bottom:18px}
.section-h2 em{font-style:italic;color:var(--coral)}
.section-desc{font-size:.95rem;color:var(--muted);line-height:1.75;max-width:560px;margin-bottom:48px}
.section.dark .section-desc{color:rgba(255,255,255,.6)}
.section.dark .section-h2{color:#fff}
.section.dark .section-label{color:var(--coral)}

/* PRODUCTS GRID (listing) */
.products-card{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.prod-card{background:#fff;padding:36px 32px;border-radius:20px;border:1px solid var(--border);box-shadow:0 4px 24px rgba(5,51,145,.07),0 1px 4px rgba(0,0,0,.04);transition:.25s;cursor:pointer}
.prod-card:hover{transform:translateY(-5px);box-shadow:0 20px 52px rgba(5,51,145,.13),0 4px 12px rgba(0,0,0,.06);border-color:rgba(5,51,145,.18)}
.prod-icon{width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;font-size:1.5rem}
.prod-tag{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--coral);margin-bottom:10px}
.prod-card h3{font-family:'Fraunces',serif;font-size:1.3rem;font-weight:700;color:var(--ink);margin-bottom:8px}
.prod-card p{font-size:.875rem;color:var(--muted);line-height:1.65;margin-bottom:20px}
.prod-link{display:inline-flex;align-items:center;gap:6px;font-size:.82rem;font-weight:600;color:var(--coral);text-decoration:none;transition:.15s}
.prod-link:hover{gap:10px}

/* PRODUCT DETAIL PAGE */
.prod-detail-hero{background:var(--sand);padding:72px 32px 56px;border-bottom:1px solid var(--border)}
.prod-detail-hero-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.prod-detail-badge{display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid var(--border);border-radius:100px;padding:5px 14px 5px 10px;font-size:.75rem;font-weight:600;color:var(--coral);margin-bottom:20px}
.prod-detail-badge-dot{width:8px;height:8px;border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.prod-detail-hero h1{font-family:'Fraunces',serif;font-size:clamp(2.2rem,4vw,3.4rem);font-weight:700;line-height:1.1;letter-spacing:-.03em;margin-bottom:14px}
.prod-detail-hero h1 em{font-style:italic;color:var(--coral)}
.prod-subtitle{font-size:1rem;font-weight:600;color:var(--coral);margin-bottom:14px;letter-spacing:-.01em}
.prod-detail-hero p{font-size:1rem;color:var(--muted);line-height:1.75;margin-bottom:32px}

/* VISUAL CARD (right side of hero) */
.detail-visual{background:#fff;border-radius:20px;border:1px solid var(--border);padding:28px;box-shadow:0 20px 60px rgba(0,0,0,.08)}
.detail-visual-header{display:flex;align-items:center;gap:8px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid var(--border)}
.dv-dots{display:flex;gap:5px}
.dv-dot{width:10px;height:10px;border-radius:50%}
.dv-title{font-size:.75rem;color:var(--muted);font-weight:500;margin-left:auto}
.dv-stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:16px}
.dv-stat{background:var(--sand);border-radius:10px;padding:14px;text-align:center}
.dv-stat-val{font-family:'Fraunces',serif;font-size:1.4rem;font-weight:700;color:var(--ink)}
.dv-stat-label{font-size:.68rem;color:var(--muted);font-weight:500;margin-top:2px}
.dv-item{display:flex;align-items:center;gap:12px;padding:10px 0;border-bottom:1px solid var(--border)}
.dv-item:last-child{border-bottom:none}
.dv-item-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:.9rem;flex-shrink:0}
.dv-item-text{font-size:.82rem;font-weight:600;color:var(--ink)}
.dv-item-sub{font-size:.72rem;color:var(--muted)}

/* FEATURES GRID */
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.feat-card{padding:28px;background:#fff;border:1px solid var(--border);border-radius:16px}
.section.dark .feat-card{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.1)}
.section.dark .feat-card h3{color:#fff}
.section.dark .feat-card p{color:rgba(255,255,255,.6)}
.feat-icon{font-size:1.8rem;margin-bottom:16px}
.feat-card h3{font-size:.95rem;font-weight:700;margin-bottom:8px;color:var(--ink)}
.feat-card p{font-size:.85rem;color:var(--muted);line-height:1.65}

/* HOW IT WORKS */
.how-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);border-radius:16px;overflow:hidden}
.how-step{background:#fff;padding:32px;position:relative}
.how-num{font-family:'Fraunces',serif;font-size:3rem;font-weight:700;color:var(--border2);line-height:1;margin-bottom:16px}
.how-step h3{font-size:.95rem;font-weight:700;color:var(--ink);margin-bottom:8px}
.how-step p{font-size:.85rem;color:var(--muted);line-height:1.65}

/* USE CASES */
.use-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.use-card{padding:28px;border:1px solid var(--border);border-radius:16px;border-top:3px solid var(--coral)}
.use-card h4{font-size:.95rem;font-weight:700;color:var(--ink);margin-bottom:10px}
.use-card p{font-size:.85rem;color:var(--muted);line-height:1.65}
.use-icon{font-size:1.6rem;margin-bottom:14px}

/* BENEFITS */
.benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.benefit-card{padding:28px;background:#fff;border:1px solid var(--border);border-radius:16px;display:flex;gap:16px;align-items:flex-start}
.benefit-icon{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.benefit-card h4{font-size:.9rem;font-weight:700;color:var(--ink);margin-bottom:6px}
.benefit-card p{font-size:.82rem;color:var(--muted);line-height:1.6}

/* SPLIT */
.split{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center}
.split.rev{direction:rtl}
.split.rev>*{direction:ltr}

/* CTA STRIP */
.cta-strip{background:var(--coral);padding:64px 32px;text-align:center}
.cta-strip h2{font-family:'Fraunces',serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:700;color:#fff;margin-bottom:14px}
.cta-strip p{font-size:.95rem;color:rgba(255,255,255,.8);margin-bottom:28px}
.btn-white{padding:13px 28px;background:#fff;color:var(--coral);border:none;border-radius:10px;font-size:.9rem;font-weight:700;cursor:pointer;font-family:inherit;transition:.2s}
.btn-white:hover{background:var(--sand)}

/* BREADCRUMB */
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:.78rem;color:var(--muted);margin-bottom:16px}
.breadcrumb span{color:var(--muted2)}
.breadcrumb a{color:var(--coral);text-decoration:none;font-weight:600;cursor:pointer}

/* BACK BTN */
.back-btn{display:inline-flex;align-items:center;gap:6px;font-size:.82rem;font-weight:600;color:var(--muted);cursor:pointer;border:none;background:none;font-family:inherit;padding:0;margin-bottom:20px;transition:.15s}
.back-btn:hover{color:var(--coral)}



/* RESPONSIVE */
@media(max-width:960px){
  .prod-detail-hero-inner,.split{grid-template-columns:1fr}
  .detail-visual{display:none}
  .products-card,.features-grid,.how-grid,.use-grid,.benefits-grid{grid-template-columns:1fr 1fr}
  .nav-links,.nav-right .btn-ghost{display:none}
  .hamburger{display:flex}
  .footer-top{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .products-card,.features-grid,.how-grid,.use-grid,.benefits-grid{grid-template-columns:1fr}
  .section{padding:56px 20px}
  .page-hero,.prod-detail-hero{padding:56px 20px 44px}
  .footer-top{grid-template-columns:1fr}
  .nav-inner{padding:0 20px}
}

    /* RESPONSIVE */
    @media(max-width:900px) {

      .hero-inner,
      .split,
      .contact-grid {
        grid-template-columns: 1fr
      }

      .hero-visual {
        display: none
      }

      .products-grid,
      .features-grid,
      .sol-grid {
        grid-template-columns: 1fr 1fr
      }

      .pricing-grid,
      .testi-grid,
      .blog-grid,
      .research-grid,
      .sec-grid {
        grid-template-columns: 1fr 1fr
      }

      .about-stats,
      .team-grid {
        grid-template-columns: 1fr 1fr
      }

      .footer-top {
        grid-template-columns: 1fr 1fr
      }

      .nav-links {
        display: none
      }

      .hamburger {
        display: flex
      }
    }

    @media(max-width:600px) {

      .products-grid,
      .features-grid,
      .sol-grid,
      .pricing-grid,
      .testi-grid,
      .blog-grid,
      .research-grid,
      .sec-grid {
        grid-template-columns: 1fr
      }

      .about-stats,
      .team-grid,
      .form-row {
        grid-template-columns: 1fr
      }

      .footer-top {
        grid-template-columns: 1fr
      }

      .section {
        padding: 64px 20px
      }

      .hero {
        padding: 64px 20px 56px
      }

      .hero h1 {
        font-size: 2.4rem
      }
    }