:root {
  --navy: #064365;
  --deep-navy: #053b5d;
  --teal: #0a8395;
  --aqua: #dff5fb;
  --soft-aqua: #edf9fc;
  --green: #37a852;
  --ink: #183b50;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(10, 131, 149, 0.16), transparent 34%),
    linear-gradient(180deg, #f7fbfd 0%, #dbeef6 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

.landing-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.coming-soon-card {
  width: min(100%, 430px);
  min-height: min(760px, calc(100vh - 44px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(6, 67, 101, 0.18);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(6, 67, 101, 0.17);
  text-align: center;
}

.brand-header {
  padding: 24px 28px 8px;
}

.brand-logo {
  display: block;
  width: min(250px, 78%);
  margin: 0 auto;
  border-radius: 14px;
}

.headline-block {
  padding: 0 28px;
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(2.45rem, 11vw, 3.5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.subtitle {
  max-width: 310px;
  margin: 12px auto 18px;
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.25;
}

.notice-panel {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 14px;
  margin: 0 24px 16px;
  padding: 16px;
  border-radius: 8px;
  background: var(--aqua);
  text-align: left;
}

.notice-illustration {
  display: grid;
  justify-items: center;
}

.screen {
  width: 84px;
  height: 66px;
  display: grid;
  place-items: center;
  position: relative;
  border: 5px solid #3b7d92;
  border-radius: 7px;
  background: #f7fdff;
}

.screen-glow {
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(10, 131, 149, 0.08), rgba(255, 255, 255, 0.4));
}

.cone {
  width: 30px;
  height: 33px;
  position: relative;
  z-index: 1;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: repeating-linear-gradient(180deg, #f5b335 0 7px, #fff 7px 12px);
  border-bottom: 7px solid #2f6f82;
}

.cone span {
  position: absolute;
  right: 5px;
  bottom: -7px;
  left: 5px;
  height: 6px;
  background: #2f6f82;
}

.screen-stand {
  width: 44px;
  height: 11px;
  margin-top: 4px;
  border-radius: 0 0 12px 12px;
  background: #3b7d92;
}

.notice-copy p {
  margin: 0;
  color: var(--deep-navy);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.32;
}

.notice-copy p + p {
  margin-top: 9px;
  font-weight: 900;
}

.action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 24px 20px;
}

.action-button {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 0.79rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.action-button:hover,
.action-button:focus-visible {
  color: #fff;
  filter: brightness(1.05);
  outline: none;
  transform: translateY(-1px);
}

.whatsapp-action {
  background: var(--green);
}

.email-action {
  background: var(--navy);
}

.action-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.action-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.email-icon {
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  position: relative;
}

.email-icon::before,
.email-icon::after {
  content: "";
  position: absolute;
  top: 11px;
  width: 20px;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
}

.email-icon::before {
  left: -1px;
  transform: rotate(31deg);
  transform-origin: left center;
}

.email-icon::after {
  right: -1px;
  transform: rotate(-31deg);
  transform-origin: right center;
}

.card-footer {
  margin-top: auto;
  padding: 48px 22px 22px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.card-footer::before {
  content: "";
  position: absolute;
  top: -52px;
  left: -8%;
  width: 116%;
  height: 92px;
  border-radius: 0 0 50% 50%;
  background: #fff;
}

.card-footer p,
.footer-contacts {
  position: relative;
  z-index: 1;
}

.card-footer p {
  max-width: 330px;
  margin: 0 auto 16px;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.5;
}

.footer-contacts {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-contacts a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-contacts a::before {
  content: "☎";
  width: 17px;
  height: 17px;
  margin-right: 6px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

.footer-contacts a[href^="mailto"]::before {
  content: "✉";
  font-size: 0.98rem;
}

@media (max-width: 460px) {
  .landing-shell {
    padding: 0;
  }

  .coming-soon-card {
    min-height: 100vh;
    border: none;
    box-shadow: none;
  }

  .brand-header {
    padding-top: 18px;
  }

  .notice-panel {
    grid-template-columns: 88px 1fr;
    margin-inline: 16px;
    padding: 14px;
  }

  .screen {
    width: 70px;
    height: 58px;
  }

  .action-row {
    margin-inline: 16px;
  }
}

@media (max-width: 350px) {
  .action-row {
    grid-template-columns: 1fr;
  }

  .notice-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
