 :root {
      --midnight: #0B2C47;
      --forest: #1F4D2E;
      --wheat: #D4A017;
      --charcoal: #333333;
      --offwhite: #F7F7F5;
      --beige: #F3EEE6;
      --white: #FFFFFF;
      --shadow: rgba(0, 0, 0, 0.25);
    }

    /* Reset and base styles */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; height: 100%; }
    body {
      font-family: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      color: var(--charcoal);
      background: var(--white);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      display: flex;
      flex-direction: column;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font: inherit; cursor: pointer; }

    .container { width: min(1200px, 92vw); margin: 0 auto; }

    /* Header and navigation */
    header.header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 50;
      transition: background-color 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
      background-color: rgba(11, 44, 71, 0.5);
      backdrop-filter: saturate(140%) blur(6px);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }

    .brand { display: flex; align-items: center; gap: 10px; color: var(--white); }
    .brand .logo { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--wheat), #f7d97a); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.3); }
    .brand .name { font-family: Montserrat, sans-serif; font-weight: 800; letter-spacing: 0.3px; }
    
    .menu-toggle { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.4); color: var(--white); background: transparent; }

    /* Main content */
    main {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    /* Hero section with gradient background */
    .hero-coming-soon {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      overflow: hidden;
      padding: 0 20px;
    }

    .hero-gradient {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--midnight) 0%, var(--forest) 70%, var(--wheat) 100%);
      z-index: -1;
      animation: gradientShift 15s ease infinite alternate;
      background-size: 200% 200%;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Add a subtle pattern overlay for more texture */
    .hero-coming-soon::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
      z-index: -1;
    }

    .coming-soon-content {
      position: relative;
      background: rgba(0, 0, 0, 0.2);
      padding: 40px;
      border-radius: 16px;
      backdrop-filter: blur(5px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    .logo-container {
      margin-bottom: 30px;
    }

    .logo-container img {
      width: 120px;
      height: auto;
      margin: 0 auto;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .coming-soon-content h1 {
      font-family: Montserrat, sans-serif;
      font-weight: 800;
      font-size: clamp(32px, 5vw, 48px);
      margin: 0 0 20px;
      line-height: 1.1;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .coming-soon-content h2 {
      font-family: Montserrat, sans-serif;
      font-weight: 700;
      color: var(--wheat);
      font-size: clamp(18px, 4vw, 24px);
      margin: 0 0 20px;
    }

    .coming-soon-content p {
      font-size: clamp(16px, 2.2vw, 18px);
      opacity: 0.95;
      max-width: 500px;
      margin: 0 auto 30px;
    }

    /* Countdown timer */
    .countdown {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin: 30px 0;
    }

    .time-box {
      text-align: center;
      padding: 16px 10px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.06);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .time-box .num {
      font-family: Montserrat, sans-serif;
      font-weight: 800;
      font-size: clamp(22px, 4.5vw, 40px);
      transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      display: inline-block;
      min-width: 1ch;
    }

    .time-box .lbl {
      font-size: 13px;
      opacity: 0.9;
    }

    /* Form styles */
    .notify-form {
      margin: 30px auto 0;
      max-width: 400px;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-control {
      width: 100%;
      padding: 12px 15px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      color: var(--white);
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .form-control:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.15);
      border-color: var(--wheat);
      box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
    }

    .form-control::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .btn-notify {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 14px 20px;
      background: var(--forest);
      color: var(--white);
      border: none;
      border-radius: 12px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 10px;
      text-decoration: none;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .btn-notify:hover {
      background: #25603a;
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
    }
    
    .btn-notify:active {
      transform: translateY(-1px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    /* Social links */
    .social-links {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--wheat);
      color: var(--midnight);
      transform: translateY(-3px);
    }

    /* Floating elements for visual interest */
    .floating-element {
      position: absolute;
      opacity: 0.07;
      z-index: -1;
      animation: float 15s ease-in-out infinite alternate;
    }

    .floating-element.el1 {
      top: 10%;
      left: 5%;
      font-size: 120px;
      transform: rotate(-15deg);
      animation-delay: 0s;
    }

    .floating-element.el2 {
      bottom: 15%;
      right: 10%;
      font-size: 100px;
      transform: rotate(10deg);
      animation-delay: 3s;
    }

    .floating-element.el3 {
      top: 50%;
      right: 15%;
      font-size: 80px;
      transform: rotate(-5deg);
      animation-delay: 6s;
    }

    .floating-element.el4 {
      bottom: 25%;
      left: 10%;
      font-size: 90px;
      transform: rotate(20deg);
      animation-delay: 9s;
    }

    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(5deg);
      }
      100% {
        transform: translateY(0) rotate(0deg);
      }
    }

    /* Footer */
    footer {
      padding: 20px 0;
      background-color: rgba(0, 0, 0, 0.2);
      color: var(--white);
      text-align: center;
    }

    footer p {
      margin: 0;
      font-size: 14px;
      opacity: 0.8;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .coming-soon-content {
        padding: 30px 20px;
      }
      
      .countdown {
        gap: 8px;
      }
      
      .time-box {
        padding: 12px 8px;
      }
    }

    /* Utilities */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }