:root {
  --bg: #f8fafc;
  /* light gray background */
  --card: #ffffff;
  /* white cards */
  --ink: #1f2937;
  /* dark text */
  --ink-dim: #6b7280;
  /* dim text */
  --pri: #0891b2;
  /* darker cyan accent */
  --pri-2: #06b6d4;
  /* cyan accent */
  --ok: #059669;
  --warn: #d97706;
  --err: #dc2626;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --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(8, 145, 178, 0.08), transparent 60%), radial-gradient(1000px 600px at 0% 0%, rgba(6, 182, 212, 0.05), 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(135deg, #b5dee8, #b4e9f2);
  border-bottom: 1px solid rgba(0, 0, 0, 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: white;
  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: #333333;
  padding: 8px 10px;
  border-radius: 10px;
}
.menu a.active,
.menu a:hover {
  background: rgba(0, 0, 0, 0.06);
}
.cta {
  background: linear-gradient(135deg, var(--pri), var(--pri-2));
  color: white !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: var(--card);
  border: 1px solid rgba(0, 0, 0, 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: white;
  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(5, 150, 105, 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(0, 0, 0, 0.2);
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--ink);
}
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 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: #475569;
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 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],
input[type=password],
select,
textarea {
  width: 100%;
  background: white;
  border: 1px solid rgba(0, 0, 0, 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: var(--pri);
  color: white;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 20px;
}
.stripebutton:hover {
  background: mix(var(--pri),black,85%);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--pri);
  font-family: inherit;
}
.checkoutbox {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 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: var(--pri);
  margin-right: 5px;
  font-size: 20px;
}
.checkoutbox em {
  display: inline-block;
  width: 90px;
  color: var(--pri);
  font-style: normal;
}
.checkout {
  max-width: 500px;
  margin: 0 auto 0 auto;
}
footer a {
  color: inherit;
}
footer a:hover {
  color: var(--ink);
  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 var(--pri);
  border-radius: 20px;
}
.home-domain article input {
  border: none;
  outline: none;
  font-size: 20px;
  color: var(--ink);
  font-family: inherit;
  background: none;
}
.home-domain article button {
  background: linear-gradient(135deg, var(--pri), var(--pri-2));
  color: white !important;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  font-family: inherit;
  font-size: 20px;
}
form.login {
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 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: var(--pri);
  margin-top: auto;
  text-align: center;
  font-size: 20px;
  display: block;
}
@media (max-width: 700px) {
  header .menu .nom {
    display: none;
  }
}
