﻿*, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --clr-bg: #0c1211;
      --clr-bg-soft: #141d1a;
      --clr-surface: rgba(15, 22, 20, 0.82);
      --clr-surface-strong: rgba(20, 29, 26, 0.95);
      --clr-border: rgba(211, 194, 154, 0.18);
      --clr-accent: #c8a76a;
      --clr-accent-2: #7f9b92;
      --clr-text: #f4f0e7;
      --clr-muted: rgba(244, 240, 231, 0.7);
      --clr-muted-soft: rgba(244, 240, 231, 0.46);
      --clr-danger: rgba(230, 120, 98, 0.85);
      --radius: 22px;
      --max-w: 1240px;
      --transition: 0.35s cubic-bezier(.4,0,.2,1);
    }

    html, body {
      height: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Manrope', sans-serif;
      background:
        radial-gradient(circle at top left, rgba(200, 167, 106, 0.12), transparent 34%),
        radial-gradient(circle at right 20%, rgba(127, 155, 146, 0.1), transparent 30%),
        linear-gradient(180deg, #0a100f 0%, var(--clr-bg) 100%);
      color: var(--clr-text);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow-x: hidden;
      position: relative;
      padding: 18px;
    }

    .bg-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .bg-canvas::before {
      content: '';
      position: absolute;
      width: 860px;
      height: 860px;
      top: -300px;
      left: -240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200, 167, 106, 0.12) 0%, transparent 72%);
      animation: drift 18s ease-in-out infinite alternate;
    }

    .bg-canvas::after {
      content: '';
      position: absolute;
      width: 740px;
      height: 740px;
      bottom: -200px;
      right: -160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(127, 155, 146, 0.14) 0%, transparent 72%);
      animation: drift2 22s ease-in-out infinite alternate;
    }

    .bg-orb {
      position: absolute;
      width: 520px;
      height: 520px;
      top: 28%;
      left: 62%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(244, 240, 231, 0.06) 0%, transparent 68%);
      animation: pulse-ring 6s ease-in-out infinite;
    }

    @keyframes drift {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(80px, 60px) scale(1.1); }
    }
    @keyframes drift2 {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(-60px, -50px) scale(1.08); }
    }
    @keyframes pulse-ring {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
      50%       { transform: translate(-50%, -50%) scale(1.25); opacity: 0.2; }
    }

    #particles {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0.7;
    }

    .wrapper {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: var(--max-w);
      margin: auto;
      padding: clamp(1rem, 2.4vw, 1.75rem);
    }

    .shell {
      width: 100%;
      border: 1px solid var(--clr-border);
      border-radius: 32px;
      background:
        linear-gradient(180deg, rgba(22, 31, 28, 0.96), rgba(11, 17, 16, 0.96)),
        var(--clr-surface);
      box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
      overflow: hidden;
      position: relative;
    }

    .shell::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(200, 167, 106, 0.08), transparent 36%),
        linear-gradient(315deg, rgba(127, 155, 146, 0.08), transparent 38%);
      pointer-events: none;
    }

    .topbar {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.05rem clamp(1.25rem, 2.4vw, 1.8rem);
      border-bottom: 1px solid rgba(211, 194, 154, 0.1);
      background: rgba(255, 255, 255, 0.01);
    }

    .topbar-note {
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--clr-muted-soft);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.82fr);
      gap: clamp(1.5rem, 3vw, 2.75rem);
      align-items: stretch;
      padding: clamp(1rem, 2.8vw, 1.6rem);
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1.4rem;
      padding: clamp(0.8rem, 1.6vw, 1.15rem);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      text-decoration: none;
    }

    .logo-mark {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      border-radius: 14px;
      background: linear-gradient(135deg, #b89456, #6d897e);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 14px 36px rgba(184, 148, 86, 0.22);
    }

    .logo-mark svg {
      width: 22px;
      height: 22px;
    }

    .logo-text {
      font-family: 'Roboto', sans-serif;
      font-size: 1.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--clr-text);
      background: linear-gradient(90deg, #fff8ed 0%, rgba(255, 248, 237, 0.72) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.05rem;
      max-width: 700px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.45rem 0.95rem;
      border-radius: 100px;
      border: 1px solid rgba(200, 167, 106, 0.3);
      background: rgba(200, 167, 106, 0.08);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(232, 214, 178, 0.92);
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--clr-accent);
      animation: blink 2s ease-in-out infinite;
    }

    .eyebrow {
      font-size: 0.88rem;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: var(--clr-muted-soft);
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.3; }
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.9rem, 6vw, 5.4rem);
      font-weight: 600;
      line-height: 0.92;
      letter-spacing: -0.03em;
      max-width: 11ch;
      background: linear-gradient(180deg, #fff9ef 0%, rgba(244, 240, 231, 0.92) 62%, rgba(127, 155, 146, 0.82) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .subtitle {
      font-size: clamp(0.98rem, 1.45vw, 1.08rem);
      color: var(--clr-muted);
      max-width: 48ch;
      line-height: 1.65;
      font-weight: 500;
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.8rem;
      width: 100%;
      max-width: 760px;
    }

    .meta-card {
      padding: 0.85rem 0.95rem;
      border-radius: 18px;
      border: 1px solid rgba(211, 194, 154, 0.12);
      background: rgba(255, 255, 255, 0.02);
    }

    .meta-label {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--clr-muted-soft);
      margin-bottom: 0.35rem;
    }

    .meta-value {
      display: block;
      font-size: 1rem;
      font-weight: 600;
      color: var(--clr-text);
    }

    .launch-card {
      display: flex;
      flex-direction: column;
      gap: 1.05rem;
      padding: clamp(1.1rem, 2vw, 1.45rem);
      border-radius: 28px;
      border: 1px solid rgba(211, 194, 154, 0.16);
      background:
        linear-gradient(180deg, rgba(27, 36, 33, 0.92), rgba(16, 24, 22, 0.94));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    .launch-card h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 2.2vw, 2.3rem);
      font-weight: 600;
      line-height: 1;
    }

    .launch-card p {
      color: var(--clr-muted);
      line-height: 1.55;
    }

    .countdown-section {
      width: 100%;
    }

    .countdown-label {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--clr-muted-soft);
      margin-bottom: 0.75rem;
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.65rem;
    }

    .countdown-item {
      min-width: 0;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--clr-border);
      border-radius: 18px;
      padding: 0.85rem 0.7rem;
      text-align: left;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .countdown-item:hover {
      border-color: rgba(200, 167, 106, 0.34);
      box-shadow: 0 0 28px rgba(200, 167, 106, 0.08);
    }

    .countdown-value {
      display: block;
      font-size: clamp(1.7rem, 2.4vw, 2.35rem);
      font-weight: 800;
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.03em;
      line-height: 1;
      background: linear-gradient(180deg, #fff7ea 0%, rgba(200, 167, 106, 0.88) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .countdown-unit {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--clr-muted-soft);
      margin-top: 0.45rem;
    }

    .divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--clr-border) 30%, var(--clr-border) 70%, transparent);
    }

    .notify-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.85rem;
    }

    .notify-heading {
      font-size: clamp(0.92rem, 1.6vw, 1rem);
      color: var(--clr-muted);
      font-weight: 400;
    }

    .notify-heading strong {
      color: var(--clr-text);
      font-weight: 500;
    }

    .notify-form {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 0.75rem;
      width: 100%;
    }

    .notify-form input[type="email"] {
      min-width: 0;
      padding: 0.85rem 1rem;
      border-radius: 14px;
      border: 1px solid var(--clr-border);
      background: rgba(255, 255, 255, 0.03);
      color: var(--clr-text);
      font-family: 'Manrope', sans-serif;
      font-size: 0.95rem;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .notify-form input[type="email"]::placeholder {
      color: rgba(244, 240, 231, 0.34);
    }

    .notify-form input[type="email"]:focus {
      border-color: rgba(200, 167, 106, 0.56);
      box-shadow: 0 0 0 3px rgba(200, 167, 106, 0.12);
    }

    .btn-notify {
      padding: 0.85rem 1.3rem;
      border-radius: 14px;
      border: none;
      cursor: pointer;
      font-family: 'Manrope', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #111816;
      background: linear-gradient(135deg, #dbc291, #b89456);
      box-shadow: 0 10px 30px rgba(184, 148, 86, 0.25);
      transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
      white-space: nowrap;
    }

    .btn-notify:hover {
      opacity: 0.9;
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(184, 148, 86, 0.3);
    }

    .btn-notify:active {
      transform: translateY(0);
    }

    .notify-success {
      display: none;
      align-items: center;
      gap: 0.5rem;
      color: rgba(100,220,140,0.9);
      font-size: 0.9rem;
      animation: fadeIn 0.4s ease;
    }

    .notify-success.visible {
      display: flex;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .social {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      border: 1px solid var(--clr-border);
      background: rgba(255, 255, 255, 0.03);
      color: var(--clr-muted-soft);
      text-decoration: none;
      transition: color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .social-link:hover {
      color: var(--clr-text);
      border-color: rgba(200, 167, 106, 0.34);
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(200, 167, 106, 0.12);
    }

    .social-link svg {
      width: 18px;
      height: 18px;
    }

    footer {
      position: relative;
      z-index: 1;
      text-align: center;
      width: 100%;
      max-width: var(--max-w);
      padding: 0.45rem clamp(1rem, 2vw, 2rem) 0.8rem;
      font-size: 0.78rem;
      color: rgba(244, 240, 231, 0.34);
    }

    footer a {
      color: rgba(244, 240, 231, 0.46);
      text-decoration: none;
      transition: color var(--transition);
    }

    footer a:hover {
      color: rgba(244, 240, 231, 0.78);
    }

    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 0.7s ease forwards;
    }

    .fade-up:nth-child(1) { animation-delay: 0.1s; }
    .fade-up:nth-child(2) { animation-delay: 0.25s; }
    .fade-up:nth-child(3) { animation-delay: 0.4s; }
    .fade-up:nth-child(4) { animation-delay: 0.55s; }
    .fade-up:nth-child(5) { animation-delay: 0.65s; }
    .fade-up:nth-child(6) { animation-delay: 0.75s; }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 1080px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        padding-bottom: 0;
      }

      h1 {
        max-width: 11ch;
      }
    }

    @media (min-width: 1081px) and (max-height: 860px) {
      body {
        padding: 12px;
      }

      .wrapper {
        padding: 0.65rem;
      }

      .topbar {
        padding: 0.9rem 1.35rem;
      }

      .hero-grid {
        gap: 1.25rem;
        padding: 0.95rem;
      }

      .hero-copy {
        gap: 1rem;
        padding: 0.55rem;
      }

      .hero {
        gap: 0.8rem;
      }

      h1 {
        font-size: clamp(2.6rem, 4.6vw, 4.4rem);
      }

      .subtitle {
        font-size: 0.98rem;
        line-height: 1.55;
      }

      .hero-meta {
        gap: 0.65rem;
      }

      .meta-card {
        padding: 0.7rem 0.85rem;
      }

      .launch-card {
        gap: 0.9rem;
        padding: 0.95rem;
      }

      .launch-card h2 {
        font-size: 1.9rem;
      }

      .countdown-label {
        margin-bottom: 0.6rem;
      }

      .countdown-item {
        padding: 0.72rem 0.65rem;
      }

      .countdown-value {
        font-size: 1.55rem;
      }

      .notify-form input[type="email"],
      .btn-notify {
        padding-top: 0.78rem;
        padding-bottom: 0.78rem;
      }

      footer {
        padding-bottom: 0.45rem;
      }
    }

    @media (max-width: 720px) {
      body {
        justify-content: flex-start;
        padding: 8px;
      }

      .wrapper {
        padding: 0;
      }

      .hero-copy {
        display: none;
      }

      .shell {
        border-radius: 20px;
      }

      .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        padding: 0.85rem 0.95rem;
      }

      .hero-grid {
        padding: 0.85rem;
      }

      .hero {
        align-items: flex-start;
      }

      .launch-card {
        gap: 0.85rem;
        padding: 0.85rem;
        border-radius: 22px;
      }

      h1 {
        max-width: none;
      }

      .hero-meta {
        grid-template-columns: 1fr;
      }

      .countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
      }

      .countdown-item {
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0.7rem;
      }

      .countdown-value {
        font-size: clamp(1.55rem, 7vw, 2rem);
      }

      .notify-section {
        gap: 0.7rem;
      }

      .notify-form {
        grid-template-columns: 1fr;
        gap: 0.6rem;
      }

      .notify-form input[type="email"],
      .btn-notify {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
      }
    }

    @media (max-width: 420px) {
      .notify-form {
        gap: 0.65rem;
      }

      .notify-form input[type="email"],
      .btn-notify {
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
