/* ==========================================================================
   INSTARIDE — COMING SOON (STUDIO EDITORIAL MINIMALISM)
   With Instaride Logo on Left, Fluid Card Art on Top-Right & Tweak Panel
   ========================================================================== */

:root {
  /* Brand Colors */
  --brand-green: #00A859;
  --brand-green-hover: #00934E;
  --brand-green-glow: rgba(0, 168, 89, 0.25);
  --brand-charcoal: #101726;
  --text-primary: #101726;
  --text-secondary: #4B5565;
  --text-muted: #7B8798;
  --text-light: #94A3B8;

  /* Studio Lighting Gradients */
  --studio-bg-radial: radial-gradient(circle at 50% 38%, #FFFFFF 0%, #F3F5F8 45%, #DFE3EB 100%);
  --studio-border: rgba(0, 0, 0, 0.08);
  --studio-card-bg: rgba(255, 255, 255, 0.85);

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --page-max-width: 1400px;
}

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

html, body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--studio-bg-radial);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  position: relative;
}

/* Subtle studio vignette lighting overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, transparent 60%, rgba(200, 205, 215, 0.25) 100%);
  z-index: 0;
}

/* ==========================================================================
   TOP RIGHT CORNER ART (Instaride Card Art PNG from IIMG Website)
   Controlled by the Tweak Panel
   ========================================================================== */

.corner-art-wrapper {
  position: absolute;
  top: -32px;
  right: -38px;
  width: 340px;
  transform: rotate(0deg) scale(1.25);
  transform-origin: top right;
  z-index: 1;
  pointer-events: none;
}

.corner-art-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.08));
}

/* ==========================================================================
   TOP HEADER (Instaride Brand Logo on Top Left)
   ========================================================================== */

.studio-header {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.5rem, 3.5vw, 3rem) clamp(1.25rem, 5vw, 4.5rem);
}

.brand-left {
  position: relative;
  z-index: 25;
  display: flex;
  align-items: center;
}

.brand-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-link:hover {
  opacity: 0.92;
  transform: scale(1.015);
}

.brand-logo {
  height: clamp(34px, 4vw, 48px);
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}

.header-right-space {
  width: 48px;
  height: 48px;
}

/* ==========================================================================
   MAIN HERO CENTER LOCKUP (The Focal Point matching the reference)
   ========================================================================== */

.studio-main {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}

.studio-center-lockup {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: studioFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Subtitle: "Our Website is" */
.studio-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.6vw, 1.3rem);
  font-weight: 500;
  letter-spacing: clamp(0.24em, 0.5vw, 0.38em);
  color: var(--text-secondary);
  margin-bottom: clamp(0.75rem, 1.6vw, 1.3rem);
  text-transform: none; /* Matches reference: "Our Website is" */
  user-select: none;
}

/* Main Title: "Launching Soon" in Instaride Green */
.studio-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 9.5vw, 8.25rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--brand-green);
  margin: 0;
  user-select: none;
  text-shadow: 0 2px 24px rgba(0, 168, 89, 0.08);
}

.title-word {
  display: block;
}

/* ==========================================================================
   MINIMAL NOTIFY FORM (Understated, clean pill)
   ========================================================================== */

.studio-notify-container {
  margin-top: clamp(2.25rem, 5vw, 4rem);
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.studio-notify-form {
  width: 100%;
}

/* Honeypot — off-screen, not display:none (some bots skip hidden fields), never reachable
   by keyboard or announced to screen readers. */
.notify-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notify-input-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--studio-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--studio-border);
  border-radius: 9999px;
  padding: 6px 7px 6px 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.notify-input-wrap:focus-within {
  border-color: rgba(0, 168, 89, 0.5);
  box-shadow: 
    0 12px 35px rgba(0, 168, 89, 0.1),
    0 0 0 3px rgba(0, 168, 89, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.95);
}

.notify-input-wrap input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 4px;
}

.notify-input-wrap input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.notify-submit-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-green);
  color: #FFFFFF;
  border: none;
  outline: none;
  border-radius: 9999px;
  padding: 11px 22px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px var(--brand-green-glow);
}

.notify-submit-btn:hover {
  background: var(--brand-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 168, 89, 0.35);
}

.notify-submit-btn:active {
  transform: translateY(0);
}

.notify-submit-btn svg {
  transition: transform 0.2s ease;
}

.notify-submit-btn:hover svg {
  transform: translateX(2px);
}

.notify-feedback {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 22px;
  transition: all 0.3s ease;
}

.notify-feedback.success {
  color: var(--brand-green);
}

.notify-feedback.error {
  color: #DC2626;
}

/* ==========================================================================
   BOTTOM FOOTER
   ========================================================================== */

.studio-footer {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3.5vw, 2.5rem) 1.5rem;
  gap: 6px;
}

.footer-handle {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-handle:hover {
  color: var(--brand-green);
  transform: translateY(-1px);
}

.footer-subtext {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.footer-subtext a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-subtext a:hover {
  color: var(--brand-green);
  text-decoration: underline;
}

.footer-dot {
  font-size: 0.65rem;
  opacity: 0.6;
}



/* ==========================================================================
   ANIMATIONS & RESPONSIVE POLISH
   ========================================================================== */

@keyframes studioFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Polish (< 600px) */
@media (max-width: 600px) {
  .studio-header {
    padding: 1.25rem 1rem;
  }

  .brand-logo {
    height: 32px;
  }

  .studio-center-lockup {
    margin-top: -1rem;
  }

  .studio-subtitle {
    letter-spacing: 0.22em;
    font-size: 0.95rem;
  }

  .studio-title {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .notify-input-wrap {
    padding: 5px 6px 5px 16px;
  }

  .notify-submit-btn {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .footer-subtext {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
