/* Meraki / ANNA-SOFTWARE Coming Soon Template
   Customize the look by changing the CSS variables in :root. */

:root {
  /* Brand + accents */
  --accent: 210 90% 62%;
  --accent-2: 292 86% 66%;
  --text: 210 35% 96%;
  --muted: 215 18% 75%;

  /* Surface */
  --bg: 222 40% 7%;
  --card: 222 35% 10%;
  --border: 220 22% 20%;

  /* Background image (optional). Set to url("./your-bg.jpg") */
  --bg-image: none;

  /* Layout */
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

@media (prefers-color-scheme: light) {
  :root {
    --text: 222 35% 10%;
    --muted: 222 15% 35%;
    --bg: 220 33% 98%;
    --card: 0 0% 100%;
    --border: 220 18% 86%;
  }
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: hsl(var(--text));
  background: hsl(var(--bg));
  line-height: 1.5;
}

.topline {
  margin: 0;
  padding: 0;
  padding-inline: 4px;
  text-align: center;
  position: relative;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(32px, 5.2vw, 72px);
  line-height: 1.12;
  margin-bottom: clamp(10px, 2.2vw, 22px);
  text-wrap: balance;
  padding-bottom: 0.06em;
  color: hsla(var(--text) / 0.98);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.topline__primary,
.topline__secondary {
  display: block;
}

.topline__secondary {
  font-weight: 750;
  letter-spacing: -0.02em;
  font-size: 0.62em;
  margin-top: 0.12em;
}

.topline {
  background: linear-gradient(135deg, hsla(var(--accent) / 0.95), hsla(var(--accent-2) / 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 10% 5%, hsla(var(--accent) / 0.25), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, hsla(var(--accent-2) / 0.22), transparent 55%),
    radial-gradient(900px 500px at 50% 100%, hsla(var(--accent) / 0.16), transparent 60%),
    linear-gradient(180deg, hsla(0 0% 0% / 0.15), transparent 28%, hsla(0 0% 0% / 0.22));
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: saturate(1.1) contrast(1.05);
  mix-blend-mode: overlay;
}

.wrap {
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 48px);
  display: grid;
  align-content: center;
  gap: 38px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 4px;
}

.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: hsla(0 0% 100% / 0.08);
  border: 1px solid hsla(var(--border) / 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  object-fit: contain;
}

.brand__name {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 16px;
}

.brand__byline {
  color: hsla(var(--muted) / 0.95);
  font-size: 13px;
  margin-top: 2px;
}

.card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(18px, 3vw, 28px);
  padding: clamp(18px, 3vw, 34px);
  border-radius: var(--radius);
  background: hsla(var(--card) / 0.72);
  border: 1px solid hsla(var(--border) / 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
  .card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    flex-direction: column;
    text-align: center;
    padding: 6px 0;
  }
}

@media (max-width: 420px) {
  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    hsla(var(--accent) / 0.18),
    hsla(var(--accent-2) / 0.12)
  );
  border: 1px solid hsla(var(--border) / 0.7);
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lede {
  margin: 0 0 18px;
  color: hsla(var(--muted) / 0.98);
  font-size: 16px;
  max-width: 64ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 10px;
}

.btn {
  appearance: none;
  border: 1px solid hsla(var(--border) / 0.75);
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease,
    box-shadow 120ms ease;
  user-select: none;
}

.btn:focus-visible {
  outline: 3px solid hsla(var(--accent) / 0.35);
  outline-offset: 3px;
}

.btn--primary {
  color: hsl(var(--text));
  border-color: hsla(var(--accent) / 0.35);
  background: linear-gradient(135deg, hsla(var(--accent) / 0.92), hsla(var(--accent-2) / 0.9));
  box-shadow: 0 14px 30px hsla(var(--accent) / 0.18);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px hsla(var(--accent) / 0.22);
}

.btn--ghost {
  background: hsla(0 0% 100% / 0.04);
}

.btn--ghost:hover {
  background: hsla(0 0% 100% / 0.07);
  transform: translateY(-1px);
}

.meta {
  margin: 10px 0 0;
  color: hsla(var(--muted) / 0.98);
  font-size: 14px;
}

.link {
  color: hsl(var(--text));
  text-decoration-color: hsla(var(--accent) / 0.6);
  text-underline-offset: 3px;
}

.link:hover {
  text-decoration-color: hsla(var(--accent-2) / 0.8);
}

.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.features__item {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid hsla(var(--border) / 0.55);
  background: hsla(0 0% 100% / 0.03);
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    hsla(var(--accent) / 0.22),
    hsla(var(--accent-2) / 0.18)
  );
  border: 1px solid hsla(var(--border) / 0.6);
  color: hsl(var(--text));
}

.icon svg {
  width: 20px;
  height: 20px;
}

.features__title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.features__desc {
  color: hsla(var(--muted) / 0.98);
  font-size: 13px;
  margin-top: 2px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: hsla(var(--muted) / 0.95);
  font-size: 13px;
  padding: 8px 0 2px;
}

.dot {
  opacity: 0.8;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid hsla(var(--border) / 0.65);
  background: hsla(var(--card) / 0.85);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  color: hsla(var(--text) / 0.98);
}
