    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --black: #0A0A0A;
      --white: #FAFAFA;
      --mid: #888888;
      --light: #D4D4D4;
      --border: #E8E8E8;
      --gold: #C9A84C;
    }

    body {
      font-family: 'Albert Sans', sans-serif;
      background: var(--white);
      color: var(--black);
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
    }

    /* ── Noise texture overlay ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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");
      background-size: 200px 200px;
      pointer-events: none;
      z-index: 0;
    }

    /* ── Top line accent ── */
    .top-bar {
      height: 3px;
      background: var(--black);
      position: relative;
      z-index: 10;
      flex-shrink: 0;
    }

    .top-bar::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 30%;
      background: var(--gold);
      animation: slide-bar 3s ease-in-out infinite alternate;
    }

    /* ── Header ── */
    header {
      position: relative;
      z-index: 1;
      padding: 2rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    /* Logo mark — animated rings */
    .logo-mark {
      position: relative;
      width: 34px;
      height: 34px;
      flex-shrink: 0;
    }

    .logo-mark .ring {
      position: absolute;
      border-radius: 50%;
      border: 2px solid var(--black);
    }

    .logo-mark .ring-1 {
      inset: 0;
      animation: spin 12s linear infinite;
      border-top-color: transparent;
    }

    .logo-mark .ring-2 {
      inset: 7px;
      animation: spin 8s linear infinite reverse;
      border-right-color: transparent;
    }

    .logo-mark .ring-dot {
      position: absolute;
      inset: 14px;
      background: var(--black);
      border-radius: 50%;
    }

    .logo-text {
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--black);
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
    }

    .logo-text .scvm {
      font-size: 1.1rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      color: var(--gold);
    }

    .header-tag {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mid);
      border: 1px solid var(--border);
      padding: 5px 12px;
      border-radius: 2px;
    }

    /* ── Main ── */
    main {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem 2rem;
      position: relative;
      z-index: 1;
    }

    /* ── Large background text ── */
    .bg-text {
      position: absolute;
      font-size: clamp(6rem, 18vw, 16rem);
      font-weight: 700;
      letter-spacing: -0.05em;
      color: transparent;
      -webkit-text-stroke: 1px var(--border);
      user-select: none;
      pointer-events: none;
      white-space: nowrap;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 0;
    }

    .content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 620px;
      width: 100%;
    }

    /* ── Countdown ── */
    .countdown-section {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 3.5rem;
      animation: fadeUp 0.8s ease both;
    }

    .count-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .count-num {
      font-size: clamp(2.2rem, 6vw, 3.5rem);
      font-weight: 300;
      line-height: 1;
      color: var(--black);
      min-width: 2ch;
      text-align: center;
    }

    .count-label {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--mid);
    }

    .count-sep {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 100;
      color: var(--gold);
      align-self: flex-start;
      margin-top: 4px;
      animation: blink 1s step-end infinite;
    }

    /* ── Divider ── */
    .divider {
      width: 48px;
      height: 1px;
      background: var(--black);
      margin-bottom: 2.5rem;
      animation: fadeUp 0.9s ease 0.1s both;
    }

    /* ── Heading ── */
    h1 {
      font-size: clamp(1.5rem, 4vw, 2.4rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.2;
      text-align: center;
      margin-bottom: 1rem;
      animation: fadeUp 1s ease 0.15s both;
    }

    p.sub {
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      font-weight: 300;
      color: var(--mid);
      text-align: center;
      line-height: 1.75;
      max-width: 440px;
      margin-bottom: 3rem;
      animation: fadeUp 1s ease 0.2s both;
    }

    /* ── Contact cards ── */
    .contacts {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeUp 1s ease 0.3s both;
    }

    .contact-card {
      display: flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--border);
      padding: 0.75rem 1.25rem;
      border-radius: 3px;
      text-decoration: none;
      color: var(--black);
      font-size: 0.85rem;
      font-weight: 400;
      transition: background 0.2s, border-color 0.2s;
      background: var(--white);
    }

    .contact-card:hover {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
    }

    .contact-card:hover svg {
      stroke: var(--white);
    }

    .contact-card svg {
      width: 15px;
      height: 15px;
      stroke: var(--black);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
      transition: stroke 0.2s;
    }

    /* ── Return date strip ── */
    .return-strip {
      margin-top: 3rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.75rem;
      color: var(--mid);
      animation: fadeUp 1s ease 0.4s both;
    }

    .return-strip::before,
    .return-strip::after {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--border);
    }

    .return-date {
      font-weight: 600;
      color: var(--black);
      letter-spacing: 0.06em;
    }

    /* ── Footer ── */
    footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
      padding: 1.2rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;
      flex-shrink: 0;
    }

    footer .copy {
      font-size: 0.72rem;
      color: var(--mid);
    }

    footer .brand {
      font-size: 0.72rem;
      color: var(--mid);
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    footer .brand span {
      font-weight: 600;
      color: var(--black);
    }

    footer .brand img {
      height: 14px;
      width: auto;
      display: block;
    }

    /* ── Keyframes ── */
    @keyframes spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes slide-bar {
      from {
        width: 20%;
        left: 0;
      }

      to {
        width: 35%;
        left: 65%;
      }
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── Responsive ── */
    @media (max-width: 480px) {
      header {
        padding: 1.2rem 1.2rem;
      }

      .header-tag {
        display: none;
      }

      .logo-text {
        font-size: 0.95rem;
      }

      .countdown-section {
        gap: 0.8rem;
      }

      .count-sep {
        display: none;
      }

      footer {
        padding: 1rem 1.2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .return-strip::before,
      .return-strip::after {
        width: 20px;
      }
    }

    @media (max-width: 640px) {
      main {
        padding: 2rem 1.2rem;
      }

      .contacts {
        flex-direction: column;
        align-items: stretch;
      }

      .contact-card {
        justify-content: center;
      }
    }

    @media (min-width: 641px) and (max-width: 1024px) {
      header {
        padding: 1.8rem 2rem;
      }

      footer {
        padding: 1.2rem 2rem;
      }
    }

    @media (min-width: 1440px) {
      header {
        padding: 2.5rem 5rem;
      }

      footer {
        padding: 1.5rem 5rem;
      }
    }