:root {
  --bg: #0b1220;
  /* deep slate */
  --card: #111827;
  /* slightly lighter */
  --ink: #e5e7eb;
  /* light text */
  --ink-dim: #9ca3af;
  /* dim text */
  --pri: #22d3ee;
  /* cyan accent */
  --pri-2: #a7f3d0;
  /* mint accent */
  --ok: #34d399;
  --warn: #f59e0b;
  --err: #f87171;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 70% -10%, rgba(34, 211, 238, 0.15), transparent 60%), radial-gradient(1000px 600px at 0% 0%, rgba(167, 243, 208, 0.1), transparent 60%), var(--bg);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.55;
}
a {
  color: var(--pri);
  text-decoration: none;
}
a:hover {
  opacity: .9;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.9), rgba(11, 18, 32, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pri), var(--pri-2));
  color: #0b1220;
  font-weight: 800;
}
#logo img {
  height: 35px;
}
.brand .title {
  font-weight: 700;
  letter-spacing: .3px;
}
.menu {
  display: flex;
  gap: 18px;
  align-items: center;
}
.menu a {
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 10px;
}
.menu a.active,
.menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.cta {
  background: linear-gradient(135deg, var(--pri), var(--pri-2));
  color: #0b1220 !important;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
}
.hero {
  padding: 72px 0 32px;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 12px 0 10px;
}
.hero p {
  color: var(--ink-dim);
  max-width: 760px;
}
.grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #0b1220;
  background: linear-gradient(135deg, var(--pri), var(--pri-2));
  font-weight: 700;
}
.muted {
  color: var(--ink-dim);
}
.list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: rgba(52, 211, 153, 0.2);
  color: var(--ok);
  font-weight: 900;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 6px 0 12px;
}
.price .big {
  font-size: 36px;
  font-weight: 800;
}
.ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--ink);
}
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 40px;
}
.kv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 900px) {
  .kv {
    grid-template-columns: 1.4fr 0.9fr;
  }
}
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  color: #cbd5e1;
  background: #0a0f1c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px;
  border-radius: 12px;
  overflow: auto;
}
/* Router transitions */
main {
  min-height: 50vh;
}
.view-enter {
  animation: fade 0.25s ease both;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* Forms */
input[type=text],
select,
textarea {
  width: 100%;
  background: #0a0f1c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  border-radius: 12px;
  padding: 12px;
}
label {
  font-size: 14px;
  color: var(--ink-dim);
}
.row {
  display: grid;
  gap: 12px;
}
@media (min-width: 760px) {
  .row-2 {
    grid-template-columns: 1fr 1fr;
  }
}
button {
  cursor: pointer;
}
.stripebutton {
  font-family: Open Sans;
  display: flex;
  padding: 3px 1px 1px 1px;
  border-radius: 5px;
  background: #22d3ee;
  color: white;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 20px;
}
.stripebutton:hover {
  background: #1fbed6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--pri);
  font-family: inherit;
}
.checkoutbox {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.checkoutbox article {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 5px 0 5px 0;
}
.checkoutbox .iconify {
  color: #22d3ee;
  margin-right: 5px;
  font-size: 20px;
}
.checkoutbox em {
  display: inline-block;
  width: 90px;
  color: #22d3ee;
  font-style: normal;
}
.checkout {
  max-width: 400px;
  margin: 0 auto 0 auto;
}
footer a {
  color: inherit;
}
footer a:hover {
  color: white;
  text-decoration: underline;
}
footer .payment-icons {
  display: flex;
}
footer .payment-icons svg {
  height: 24px;
  margin-left: 10px;
  opacity: .4;
}
footer .payment-icons path.mastercard-a {
  fill: white;
}
footer .payment-icons .privacy-and-security.svelte-1h53h1a.svelte-1h53h1a {
  /* display: flex
; */
  gap: 0.5em;
  justify-content: flex-end;
}
footer .payment-icons .light.svelte-1h53h1a .logo-text.svelte-1h53h1a {
  border-color: var(--c-white);
}
footer .payment-icons .logo-text.svelte-1h53h1a.svelte-1h53h1a {
  display: flex;
  flex-direction: row;
  border: 1px solid var(--c-gray);
  border-radius: 5px;
  align-items: center;
  padding: 2px 12px 2px 2px;
}
.home-domain article {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border: 1px solid #22d3ee;
  border-radius: 20px;
}
.home-domain article input {
  border: none;
  outline: none;
  font-size: 20px;
  color: white;
  font-family: inherit;
  background: none;
}
.home-domain article button {
  background: linear-gradient(135deg, var(--pri), var(--pri-2));
  color: #0b1220 !important;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  font-family: inherit;
  font-size: 20px;
}
form.login {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
form.login input {
  margin-bottom: 20px;
}
form.login button {
  border: none;
}
.card {
  display: flex;
  flex-direction: column;
}
.card h3 {
  text-align: center;
}
.card ul {
  padding-inline-start: 15px;
  font-size: 13px;
  line-height: 1.3;
}
.card p.c {
  text-align: center;
  line-height: 1.5;
}
.card p.cc {
  text-align: center;
  line-height: 1.5;
  font-size: 13px;
}
.card .price {
  color: #22d3ee;
  margin-top: auto;
  text-align: center;
  font-size: 20px;
  display: block;
}
@media (max-width: 700px) {
  header .menu .nom {
    display: none;
  }
}
