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

    :root {
      --white:   #ffffff;
      --black:   #0d0d0d;
      --border:  #e2e2e2;
      --muted:   #6b6b6b;
      --accent:  #e8630a;
      --accent-hover: #cf550a;
      --accent-light: #fff4ee;
      --font: 'DM Sans', sans-serif;
      --radius: 14px;
      --radius-sm: 9px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--white);
      color: var(--black);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* ── LAYOUT ── */
    .page {
      position: relative;
      z-index: 1;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    /* ── HEADER ── */
    header {
      padding: 28px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
      animation: fadeDown 0.6s ease both;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--black);
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
    }

    .logo-text {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .badge {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      border: 1px solid var(--border);
      padding: 5px 12px;
      border-radius: 999px;
    }

    /* ── HERO ── */
    main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 24px;
    }

    .hero {
      max-width: 600px;
      width: 100%;
      text-align: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-light);
      border: 1px solid rgba(232,99,10,0.18);
      padding: 5px 14px;
      border-radius: 999px;
      margin-bottom: 30px;
      animation: fadeUp 0.7s 0.1s ease both;
    }

    .eyebrow-dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 2.2s infinite;
    }

    .hero-title {
      font-size: clamp(2.6rem, 7vw, 4.2rem);
      font-weight: 700;
      line-height: 1.06;
      letter-spacing: -0.03em;
      color: var(--black);
      margin-bottom: 22px;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .hero-title em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-desc {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.75;
      color: var(--muted);
      max-width: 460px;
      margin: 0 auto 48px;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    /* ── BUTTONS ── */
    .cta-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      animation: fadeUp 0.7s 0.4s ease both;
    }

    .btn-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 24px;
      border-radius: var(--radius-sm);
      font-family: var(--font);
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      white-space: nowrap;
    }

    .btn:hover  { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }

    /* Primary — solid accent */
    .btn-primary {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 1px 3px rgba(232,99,10,0.15), 0 4px 16px rgba(232,99,10,0.18);
    }
    .btn-primary:hover {
      background: var(--accent-hover);
      box-shadow: 0 2px 6px rgba(232,99,10,0.2), 0 8px 28px rgba(232,99,10,0.22);
    }

    /* Outline — bordered */
    .btn-outline {
      background: var(--white);
      color: var(--black);
      border: 1px solid var(--border);
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    .btn-outline:hover {
      background: #fafafa;
      border-color: #c8c8c8;
      box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    }

    /* icon inside btn */
    .btn svg {
      flex-shrink: 0;
    }

    /* ── DIVIDER LABEL ── */
    .divider {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
      max-width: 60px;
    }

    /* ── FOOTER ── */
    footer {
      padding: 22px 40px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeUp 0.6s 0.5s ease both;
    }

    .footer-text {
      font-size: 0.78rem;
      color: var(--muted);
      letter-spacing: 0.01em;
    }

    .footer-text span {
      color: var(--accent);
    }

    /* ── DECORATIVE RING ── */
    .ring-wrap {
      position: fixed;
      top: -180px;
      right: -180px;
      width: 520px;
      height: 520px;
      pointer-events: none;
      z-index: 0;
      opacity: 0.45;
    }

    .ring-wrap svg circle {
      animation: spin 28s linear infinite;
      transform-origin: 260px 260px;
    }

    .ring-wrap svg circle:nth-child(2) {
      animation-duration: 40s;
      animation-direction: reverse;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(0.75); }
    }

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

    /* ── RESPONSIVE ── */
    @media (max-width: 540px) {
      header { padding: 20px 20px; }
      .badge { display: none; }
      main   { padding: 56px 20px; }
      footer { padding: 20px 20px; }

      .btn-row {
        flex-direction: column;
        width: 100%;
      }

      .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
        font-size: 0.92rem;
      }

      .ring-wrap {
        width: 320px;
        height: 320px;
        top: -100px;
        right: -100px;
      }
    }
