:root {
  --ink: #201534;
  --purple: #763afc;
  --purple-dark: #4b11a7;
  --lavender: #eee7ff;
  --pale: #f7f4fc;
  --border: #ded5ed;
  --slate: #645a75;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }

.coming-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 92px 1fr 70px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, white 0%, white 52%, #f4efff 100%);
}

.coming-header,
.coming-footer {
  width: min(1480px, calc(100% - 72px));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}

.logo { display: inline-flex; align-items: center; width: max-content; }
.brand-logo-horizontal { width: 202px; height: auto; display: block; }
.coming-contact { color: var(--slate); font-weight: 600; }
.coming-contact:hover,
.coming-contact:focus-visible { color: var(--purple); }

.coming-hero {
  width: min(1380px, calc(100% - 96px));
  margin: auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 80px;
  align-items: center;
  padding: 55px 0 75px;
}

.coming-copy { position: relative; z-index: 2; }
.coming-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 25px;
}
.coming-label span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 7px var(--lavender);
}
h1 {
  max-width: 660px;
  font-size: clamp(62px, 6vw, 92px);
  line-height: 1.03;
  letter-spacing: -.052em;
  margin: 0;
}
.coming-copy > p:not(.coming-label) {
  max-width: 590px;
  color: var(--slate);
  font-size: 20px;
  line-height: 1.65;
  margin: 30px 0 35px;
}
.button {
  min-height: 54px;
  padding: 0 25px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: white;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--purple-dark);
  box-shadow: 0 10px 24px rgba(75, 17, 167, .18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover,
.button:focus-visible {
  background: linear-gradient(135deg, #3d0c8f, #672fd2);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(75, 17, 167, .27);
}

.coming-visual {
  min-height: 620px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(247,244,252,.95), rgba(232,222,255,.72));
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 75px 85px;
}
.coming-visual::before {
  content: "";
  position: absolute;
  inset: 37px -70px 48px 48px;
  border: 1px solid #b89cee;
  border-radius: 40px;
}
.coming-grid {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(#bba2eb 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .48;
  -webkit-mask-image: linear-gradient(135deg, black, transparent 72%);
  mask-image: linear-gradient(135deg, black, transparent 72%);
}
.flow-card {
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 16px 35px rgba(11,31,51,.09);
  border-radius: 15px;
  padding: 17px 20px;
  display: grid;
  grid-template-columns: 54px 1fr 34px;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.flow-card-two { margin-left: 55px; }
.flow-card-three { margin-left: 110px; }
.flow-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.flow-icon.blue { background: #eee7ff; color: var(--purple); }
.flow-icon.amber { background: #fff1dc; color: #d18d20; }
.flow-icon.green { background: #eee7ff; color: var(--purple-dark); }
.flow-card div { display: grid; grid-template-columns: 30px 1fr; }
.flow-card small {
  grid-row: 1 / 3;
  color: var(--purple);
  font-weight: 750;
  padding-top: 3px;
}
.flow-card strong { font-size: 17px; }
.flow-card em {
  color: var(--slate);
  font-size: 13px;
  font-style: normal;
  margin-top: 4px;
}
.flow-card b {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lavender);
  color: var(--purple);
}
.flow-line {
  height: 37px;
  width: 2px;
  margin-left: 54px;
  background: #9a72e5;
  position: relative;
  z-index: 2;
}
.flow-card-two + .flow-line { margin-left: 109px; }
.flow-line span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  left: -2px;
}
.flow-line span:nth-child(1) { top: 2px; }
.flow-line span:nth-child(2) { top: 15px; }
.flow-line span:nth-child(3) { top: 29px; }
.pulse-card {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 36px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 17px 20px;
  box-shadow: 0 15px 30px rgba(11,31,51,.09);
  display: grid;
  min-width: 145px;
}
.pulse-card span { color: var(--slate); font-size: 12px; }
.pulse-card strong { font-size: 30px; margin: 9px 0 1px; }
.pulse-card em { color: var(--purple); font-style: normal; font-size: 12px; }
.coming-footer {
  border-top: 1px solid var(--border);
  color: var(--slate);
  font-size: 13px;
}

@media (max-width: 980px) {
  .coming-page { overflow: visible; }
  .coming-hero { grid-template-columns: 1fr; text-align: center; padding-top: 90px; }
  .coming-copy h1,
  .coming-copy > p:not(.coming-label) { margin-inline: auto; }
  .coming-label { justify-content: center; }
  .coming-visual { width: min(760px, 100%); margin: 30px auto 0; text-align: left; }
}

@media (max-width: 650px) {
  .coming-page { grid-template-rows: 76px 1fr auto; }
  .coming-header,
  .coming-footer { width: calc(100% - 36px); }
  .coming-header .coming-contact { display: none; }
  .brand-logo-horizontal { width: 178px; }
  .coming-hero { width: calc(100% - 36px); padding: 60px 0; gap: 35px; }
  h1 { font-size: 50px; }
  .coming-copy > p:not(.coming-label) { font-size: 17px; }
  .coming-visual { min-height: 500px; padding: 50px 16px; border-radius: 24px; }
  .coming-visual::before,
  .pulse-card { display: none; }
  .flow-card-two,
  .flow-card-three { margin-left: 0; }
  .flow-line,
  .flow-card-two + .flow-line { margin-left: 42px; }
  .flow-card { grid-template-columns: 46px 1fr 30px; padding: 14px; }
  .flow-icon { width: 44px; height: 44px; }
  .coming-footer {
    min-height: 100px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
