/* ==========================================================================
   Indian Interpreters — Coming Soon page
   ========================================================================== */

:root {
  --navy: #10254c;
  --blue: #1a56b0;
  --red: #d32f2f;
  --green: #1f8a4c;
  --orange: #f39c12;
  --bg: #f4f7fb;
  --white: #ffffff;
  --text: #2b3648;
  --text-light: #64748b;
  --shadow: 0 10px 30px rgba(16, 37, 76, 0.12);
  --radius: 16px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef3fb 0%, #f8fafc 40%, #eef3fb 100%);
  overflow-x: hidden;
  position: relative;
}

.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;
}

/* Decorative background shapes */
.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.shape-one {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -140px;
  background: radial-gradient(circle, #1a56b0 0%, transparent 70%);
}

.shape-two {
  width: 460px;
  height: 460px;
  bottom: -160px;
  right: -160px;
  background: radial-gradient(circle, #f39c12 0%, transparent 70%);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Hero banner ----------
   This artwork is square, so it's capped at a comfortable width and
   centered rather than stretched full-bleed like a wide banner. */
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 20px 0;
}

.hero-inner {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Coming soon section ---------- */
.coming-soon {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 48px 0 24px;
}

.coming-soon .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 12px;
}

.headline {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 16px;
}

.headline span {
  color: var(--red);
  position: relative;
  white-space: nowrap;
}

.subtext {
  max-width: 640px;
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-light);
  line-height: 1.7;
  margin: 0 0 40px;
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.countdown-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  min-width: 90px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.countdown-number {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 500;
}

/* ---------- Notify form ---------- */
.notify-form {
  width: 100%;
  max-width: 480px;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.notify-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid #dbe4f3;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--white);
  color: var(--text);
  min-width: 0;
}

.notify-form input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 86, 176, 0.12);
}

.notify-form button {
  background: linear-gradient(135deg, var(--red), #b71c1c);
  color: var(--white);
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 18px rgba(211, 47, 47, 0.3);
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(211, 47, 47, 0.38);
}

.notify-form button:active {
  transform: translateY(0);
}

.form-message {
  min-height: 20px;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 8px;
}

.form-message.success {
  color: var(--green);
}

.form-message.error {
  color: var(--red);
}

/* ---------- Footer ---------- */
.footer {
  width: 100%;
  text-align: center;
  padding: 20px 16px 32px;
  font-size: 13px;
  color: var(--text-light);
}

/* ---------- Responsive breakpoints ---------- */
@media (max-width: 640px) {
  .hero {
    padding: 12px 12px 0;
  }

  .hero-inner {
    max-width: 100%;
    border-radius: 12px;
  }

  .coming-soon {
    padding: 32px 0 16px;
  }

  .notify-form {
    flex-direction: column;
  }

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

  .countdown-item {
    min-width: 70px;
    padding: 14px 8px;
  }
}

@media (max-width: 400px) {
  .countdown {
    gap: 10px;
  }

  .countdown-item {
    min-width: 60px;
  }
}
