:root {
  --background: #ffffff;
  --foreground: #073f75;
  --card: #ffffff;
  --card-foreground: #171717;
  --popover: #ffffff;
  --popover-foreground: #171717;
  --primary: #0a5d9f;
  --primary-foreground: #fafafa;
  --secondary: #eaf7ff;
  --secondary-foreground: #171717;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  --accent: #46a8df;
  --accent-foreground: #171717;
  --destructive: #e7000b;
  --border: #cceaf9;
  --input: #e5e5e5;
  --ring: #3da3dc;
  --chart-1: #f54900;
  --chart-2: #009689;
  --chart-3: #104e64;
  --chart-4: #ffb900;
  --chart-5: #fe9a00;
  --radius: 1.5rem;
  --sidebar: #fafafa;
  --sidebar-foreground: #171717;
  --sidebar-primary: #171717;
  --sidebar-primary-foreground: #fafafa;
  --sidebar-accent: #f5f5f5;
  --sidebar-accent-foreground: #171717;
  --sidebar-border: #e5e5e5;
  --sidebar-ring: #a1a1a1;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --font-sans: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: #fafdff;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Montserrat", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.coming-soon-shell {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(232, 248, 255, 0.88), rgba(255, 255, 255, 0.96) 40%, rgba(242, 251, 255, 0.88)),
    #ffffff;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 6vw, 6.5rem);
  isolation: isolate;
}

.coming-soon-shell::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(55, 155, 213, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 155, 213, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 55%);
}

.wash-light {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.72;
}

.wash-light-one {
  width: min(62vw, 58rem);
  height: min(62vw, 58rem);
  top: -24rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(91, 197, 235, 0.4), rgba(152, 229, 250, 0.11) 55%, transparent 72%);
  animation: drift 11s ease-in-out infinite alternate;
}

.wash-light-two {
  width: 30rem;
  height: 30rem;
  bottom: -18rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(23, 118, 184, 0.19), transparent 68%);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header {
  position: relative;
  z-index: 2;
}

.brand-mark {
  width: clamp(10.5rem, 17vw, 15rem);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.header-note {
  color: #126ea8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  width: min(100%, 86rem);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.hero-copy {
  max-width: 45rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
  color: #1176b4;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #45b6e8;
  box-shadow: 0 0 0 0.35rem rgba(69, 182, 232, 0.14);
  animation: pulse 2.1s ease-in-out infinite;
}

h1 {
  margin: 0;
  color: #073f75;
  font-size: clamp(3.3rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

h1 span {
  color: #3fa7df;
}

.intro {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: #3d6383;
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.75;
}

.launch-status {
  width: min(100%, 34rem);
  margin-top: 2.25rem;
}

.status-copy {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.72rem;
  color: #4e7190;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-track {
  height: 0.36rem;
  overflow: hidden;
  border-radius: 999px;
  background: #dceff9;
}

.status-track span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #075a99, #54bde8);
  box-shadow: 0 0 1.25rem rgba(65, 168, 222, 0.45);
  animation: breathe 4.5s ease-in-out infinite;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.6rem;
  margin-top: 2rem;
  padding: 0.62rem 1.35rem 0.62rem 0.68rem;
  border: 1px solid rgba(7, 80, 139, 0.12);
  border-radius: 999px;
  background: #07508b;
  box-shadow: 0 1rem 2.2rem rgba(7, 80, 139, 0.2);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  background: #09639f;
  box-shadow: 0 1.2rem 2.8rem rgba(7, 80, 139, 0.25);
}

.whatsapp-button:focus-visible {
  outline: 3px solid rgba(77, 185, 231, 0.5);
  outline-offset: 4px;
}

.whatsapp-icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.15rem;
}

.visual-panel {
  position: relative;
  display: grid;
  min-height: min(32rem, 52vw);
  place-items: center;
}

.clean-disc {
  position: relative;
  display: grid;
  width: clamp(17rem, 33vw, 29rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(205, 239, 253, 0.62));
  box-shadow:
    -1.5rem 2rem 4rem rgba(13, 85, 133, 0.12),
    inset 0 0 0 0.75rem rgba(255, 255, 255, 0.48),
    inset 0 0 3rem rgba(79, 181, 227, 0.18);
  backdrop-filter: blur(14px);
}

.disc-glow {
  position: absolute;
  inset: 9%;
  border-radius: inherit;
  background: conic-gradient(from 130deg, #00508b, #58c5ec, #bcefff, #237fb8, #00508b);
  animation: rotate 18s linear infinite;
}

.disc-core {
  position: relative;
  display: grid;
  width: 70%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 26%, #ffffff 0 12%, #ecfaff 32%, #cdeefd 68%, #f7fdff 100%);
  box-shadow: inset -1rem -1.2rem 2rem rgba(25, 123, 177, 0.12), 0 1.2rem 3rem rgba(0, 80, 139, 0.18);
}

.monogram {
  color: #07518d;
  font-size: clamp(6rem, 13vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
  text-shadow: 0 0.35rem 0 rgba(79, 181, 226, 0.23);
}

.spark {
  position: absolute;
  z-index: 2;
  color: #4fc0eb;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  animation: twinkle 2.4s ease-in-out infinite;
}

.spark-one {
  top: 16%;
  right: 18%;
}

.spark-two {
  bottom: 22%;
  left: 18%;
  color: #075b98;
  animation-delay: -1.2s;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(52, 158, 213, 0.26);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 48%;
  left: -0.3rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #58c4eb;
  box-shadow: 0 0 1rem rgba(88, 196, 235, 0.7);
  content: "";
}

.orbit-large {
  width: clamp(20rem, 40vw, 35rem);
  aspect-ratio: 1;
  animation: rotate 22s linear infinite reverse;
}

.orbit-small {
  width: clamp(15rem, 29vw, 25rem);
  aspect-ratio: 1;
  border-style: dashed;
  animation: rotate 15s linear infinite;
}

.visual-caption {
  position: absolute;
  right: 0;
  bottom: 5%;
  margin: 0;
  color: #0a639f;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.7;
  text-align: right;
  text-transform: uppercase;
}

.bubble {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(92, 195, 235, 0.12));
  box-shadow: inset 0.2rem 0.25rem 0.6rem rgba(255, 255, 255, 0.95), 0 0.7rem 1.8rem rgba(16, 111, 168, 0.1);
}

.bubble-one {
  width: 4rem;
  height: 4rem;
  top: 24%;
  right: 6%;
  animation: float 6s ease-in-out infinite;
}

.bubble-two {
  width: 1.8rem;
  height: 1.8rem;
  top: 18%;
  right: 14%;
  animation: float 5s ease-in-out infinite -2s;
}

.bubble-three {
  width: 2.6rem;
  height: 2.6rem;
  bottom: 13%;
  left: 43%;
  animation: float 7s ease-in-out infinite -4s;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 109, 166, 0.15);
  color: #52748f;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.25rem); }
}

@keyframes drift {
  to { transform: translate(-2rem, 2rem) scale(1.05); }
}

@keyframes pulse {
  0%, 100% { transform: scale(0.95); opacity: 0.75; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes breathe {
  0%, 100% { width: 61%; }
  50% { width: 78%; }
}

@keyframes twinkle {
  0%, 100% { transform: scale(0.82) rotate(0deg); opacity: 0.55; }
  50% { transform: scale(1.18) rotate(12deg); opacity: 1; }
}

@media (max-width: 860px) {
  .coming-soon-shell {
    min-height: 100svh;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3.5rem 0 2.5rem;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .intro,
  .launch-status {
    margin-right: auto;
    margin-left: auto;
  }

  .whatsapp-button {
    margin-right: auto;
    margin-left: auto;
  }

  .visual-panel {
    min-height: 22rem;
  }

  .visual-caption {
    right: 8%;
  }
}

@media (max-width: 560px) {
  .coming-soon-shell {
    padding: 1.1rem 1.1rem 1.4rem;
  }

  .header-note {
    max-width: 8rem;
    font-size: 0.65rem;
    line-height: 1.5;
    text-align: right;
  }

  .hero {
    padding-top: 3.25rem;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
  }

  .intro {
    font-size: 1rem;
    line-height: 1.65;
  }

  .visual-panel {
    min-height: 19rem;
  }

  .visual-caption {
    display: none;
  }

  .site-footer {
    align-items: flex-start;
    font-size: 0.66rem;
    line-height: 1.5;
  }
}

@media (max-height: 760px) and (min-width: 861px) {
  .coming-soon-shell {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }

  .brand-mark {
    width: 11.5rem;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  h1 {
    font-size: clamp(3.6rem, 6.7vw, 6rem);
  }

  .visual-panel {
    min-height: 27rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
