/* ============================================================
   CLOUDWEB · Public site design system
   Shared by landing + all subpages (/domeny, /webhosting, …)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
svg { display: block; }

:root {
  --primary:       #1437FF;
  --primary-deep:  #001dc0;
  --primary-hover: #001a9f;
  --primary-50:    #EEF1FF;
  --primary-100:   #D9E0FF;
  --primary-200:   #B6C2FF;
  --success:       #80c700;
  --success-soft:  #EBF7D1;
  --danger:        #dc2626;
  --danger-soft:   #FEE2E2;
  --warning:       #F59E0B;
  --warning-soft:  #FEF3C7;
  --bg:            #F9FBFC;
  --bg-soft:       #F3F6FA;
  --card:          #FFFFFF;
  --ink:           #0F1419;
  --ink-2:         #2B3339;
  --muted:         #6B7280;
  --muted-2:       #9CA3AF;
  --border:        #E5E7EB;
  --border-soft:   #EEF0F3;
  --ring: 0 0 0 4px rgba(20, 55, 255, 0.14);
  --shadow-sm: 0 1px 2px rgba(15, 20, 25, 0.04), 0 1px 3px rgba(15, 20, 25, 0.06);
  --shadow:    0 6px 14px -6px rgba(15, 20, 25, 0.08), 0 12px 28px -12px rgba(15, 20, 25, 0.12);
  --shadow-lg: 0 18px 40px -12px rgba(15, 20, 25, 0.12), 0 30px 60px -20px rgba(20, 55, 255, 0.18);
  --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --max:    1200px;
  --gutter: clamp(20px, 4vw, 40px);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: 'ss01', 'cv11';
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  color: var(--primary-deep);
  border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.01em;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(128, 199, 0, 0.2);
}

.mono { font-family: var(--mono); letter-spacing: -0.01em; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500; line-height: 1;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--primary-deep);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 29, 192, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -4px rgba(0, 29, 192, 0.4);
}
.btn--secondary {
  background: var(--card);
  color: var(--ink);
  border-color: var(--border);
}
.btn--secondary:hover {
  border-color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.btn--ghost { color: var(--ink-2); }
.btn--ghost:hover { color: var(--primary); }
.btn--lg { padding: 14px 26px; font-size: 15px; }

/* BETA TEST BANNER */
.test-banner {
  position: sticky; top: 0; z-index: 70;
  background: linear-gradient(90deg, #FEF3C7 0%, #FDE68A 100%);
  border-bottom: 1px solid #F59E0B;
  color: #78350F;
  font-size: 13px; font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  line-height: 1.45;
}
.test-banner strong { font-weight: 700; }
.test-banner svg {
  display: inline-block; vertical-align: -3px; margin-right: 6px;
  color: #B45309;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(249, 251, 252, 0.88);
  backdrop-filter: saturate(1.5) blur(12px);
  -webkit-backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink);
}
.logo img { width: 38px; height: 38px; object-fit: contain; }
.logo span em { font-style: normal; color: var(--primary); }

.nav__menu {
  display: flex; align-items: center; gap: 2px;
  font-size: 14px; font-weight: 500;
}
.nav__menu > li { position: relative; }
.nav__menu > li > a,
.nav__menu > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 8px;
  color: var(--ink-2);
  transition: all 0.15s;
}
.nav__menu > li > a:hover,
.nav__menu > li > button:hover,
.nav__menu > li.is-active > a {
  background: var(--primary-50);
  color: var(--primary-deep);
}
.nav__menu .caret {
  width: 12px; height: 12px;
  transition: transform 0.15s;
}
.nav__menu > li:hover .caret { transform: rotate(180deg); }

/* MEGA MENU */
.mega {
  position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, 8px);
  min-width: 540px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 90;
}
.nav__menu > li:hover .mega,
.nav__menu > li:focus-within .mega {
  opacity: 1; visibility: visible;
  transform: translate(-50%, 0);
}
.mega__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}
.mega__col h5 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); font-weight: 600;
  margin: 6px 12px 8px;
}
.mega a {
  display: block;
  padding: 9px 12px; border-radius: 8px;
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  transition: all 0.12s;
}
.mega a:hover {
  background: var(--primary-50);
  color: var(--primary-deep);
}
.mega a small {
  display: block;
  font-size: 12px; color: var(--muted);
  font-weight: 400; margin-top: 2px;
}

.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__cart {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 8px;
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  border: 1px solid var(--border);
  background: var(--card);
}
.nav__cart:hover { border-color: var(--primary); color: var(--primary-deep); }
.nav__cart .badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--primary-deep); color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 999px; font-family: var(--mono);
}

/* MOBILE NAV */
.nav__toggle { display: none; }
.mobile-nav {
  display: none;
  background: var(--card);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px var(--gutter);
}
.mobile-nav.is-open { display: block; }
.mobile-nav details { margin-bottom: 4px; }
.mobile-nav summary {
  list-style: none;
  padding: 12px 10px; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: '+'; font-size: 20px; color: var(--primary); }
.mobile-nav details[open] summary::after { content: '–'; }
.mobile-nav ul { padding: 4px 0 10px 10px; }
.mobile-nav li a,
.mobile-nav > a {
  display: block; padding: 10px; border-radius: 8px;
  font-size: 14px; color: var(--ink-2);
}
.mobile-nav li a:hover,
.mobile-nav > a:hover { background: var(--primary-50); color: var(--primary-deep); }
.mobile-nav__ctas {
  display: flex; gap: 10px; margin-top: 12px;
  padding-top: 12px; border-top: 1px solid var(--border-soft);
}
.mobile-nav__ctas .btn { flex: 1; }

/* HERO */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(20, 55, 255, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(128, 199, 0, 0.06), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; text-align: center; }
.hero h1 {
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.05; letter-spacing: -0.035em; font-weight: 600;
  margin: 24px auto 20px; max-width: 900px;
  word-wrap: break-word; overflow-wrap: break-word;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 20%, #5C79FF 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55; color: var(--muted);
  max-width: 640px; margin: 0 auto 36px;
}
.hero__ctas {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.hero__badges {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-2);
}
.hero__badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero__badges svg { color: var(--success); flex-shrink: 0; }

/* SUBPAGE HERO (shorter, centred) */
.page-hero {
  position: relative; padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero__inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 600;
  margin: 18px 0 16px;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 20%, #5C79FF 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p {
  font-size: 17px; color: var(--muted); margin: 0 auto 24px;
  max-width: 620px;
}
.page-hero__ctas { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* BREADCRUMBS */
.crumbs {
  padding: 16px 0 0;
  font-size: 13px; color: var(--muted);
}
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; }
.crumbs li + li::before {
  content: '›'; color: var(--muted-2); margin-right: 0;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--primary-deep); }
.crumbs [aria-current='page'] { color: var(--ink-2); font-weight: 500; }

/* DOMAIN CARD – instrument panel over the hero grid.
   Principles: framed (hairline + small offset shadow, not big blur), mono = data,
   sans = prose, one accent per surface, flat result surfaces with a status LED
   instead of pastel tints. Corner tick marks read as a "mounted panel" cue. */
.domain-card {
  position: relative;
  max-width: 820px; margin: 60px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  box-shadow: 0 1px 0 var(--border-soft), 4px 4px 0 -1px var(--border-soft);
}
.domain-card::before,
.domain-card::after {
  content: '';
  position: absolute;
  width: 9px; height: 9px;
  border-style: solid;
  border-color: var(--ink-2);
  border-width: 0;
  opacity: 0.55;
  pointer-events: none;
}
.domain-card::before {
  top: 7px; left: 7px;
  border-top-width: 1px; border-left-width: 1px;
}
.domain-card::after {
  top: 7px; right: 7px;
  border-top-width: 1px; border-right-width: 1px;
}
.domain-card__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 0 2px 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.domain-card__title {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.domain-card__title::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(128, 199, 0, 0.18);
  flex-shrink: 0;
}
.domain-card__title svg { display: none; }
.domain-card__hint {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.domain-form {
  display: flex; gap: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.domain-form:focus-within {
  border-color: var(--primary);
  box-shadow: var(--ring);
  background: var(--card);
}
.domain-form input {
  flex: 1; min-width: 0;
  border: 0; background: transparent; outline: none;
  padding: 10px 12px;
  font-size: 16px; color: var(--ink); font-weight: 500;
  letter-spacing: -0.01em;
}
.domain-form input::placeholder {
  color: var(--muted-2); font-weight: 400;
  font-family: var(--mono); font-size: 14px;
  letter-spacing: 0;
}
.domain-form button[type='submit'] {
  background: var(--primary-deep); color: #fff;
  padding: 0 18px; border-radius: 6px;
  font-size: 12px; font-weight: 500;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s;
}
.domain-form button[type='submit']:hover { background: var(--primary-hover); }
.domain-form button[type='submit']:disabled { opacity: 0.85; cursor: wait; }

/* Loading state: hide arrow, show spinner */
.domain-form button[type='submit'] .domain-submit-spinner { display: none; }
.domain-form button[type='submit'].is-loading .domain-submit-arrow { display: none; }
.domain-form button[type='submit'].is-loading .domain-submit-spinner {
  display: inline-block; animation: cw-spin 0.7s linear infinite;
}
@keyframes cw-spin { to { transform: rotate(360deg); } }

.domain-card__tlds {
  display: flex; gap: 18px;
  margin-top: 16px; padding: 14px 2px 0;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.01em;
}
.domain-card__tlds .tld { display: inline-flex; align-items: baseline; gap: 6px; }
.domain-card__tlds .tld b { color: var(--ink); font-weight: 500; }

/* DOMAIN RESULTS (AJAX) – flat surfaces, status communicated via a colored
   LED on the left and a mono outline chip, not via pastel card tints. */
.domain-results { margin-top: 20px; display: none; text-align: left; }
.domain-results.is-visible { display: block; }
.domain-results__primary {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px 14px 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}
.domain-results__primary::before {
  content: '';
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--muted-2);
}
.domain-results__primary--available::before {
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(128, 199, 0, 0.18);
}
.domain-results__primary--taken::before { background: var(--danger); }
.domain-results__primary--error::before { background: var(--muted); }
.domain-results__name {
  font-family: var(--mono); font-weight: 500;
  color: var(--ink); font-size: 15px;
  letter-spacing: -0.01em;
  flex: 1; min-width: 0; word-break: break-all;
}
.domain-results__status {
  font-family: var(--mono);
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 7px; border-radius: 3px;
  border: 1px solid currentColor;
  background: transparent;
  white-space: nowrap;
}
.domain-results__status--available { color: #3f7800; }
.domain-results__status--taken { color: var(--danger); }
.domain-results__status--error { color: var(--muted); }
.domain-results__price {
  font-family: var(--mono);
  font-weight: 500; color: var(--ink); font-size: 13px;
  white-space: nowrap;
}
.domain-results__price small { color: var(--muted); font-weight: 400; }
.domain-results__primary .btn {
  padding: 9px 14px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.domain-results__primary .btn svg { display: none; }

.domain-results__suggestions {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.domain-results__suggestion {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  font-size: 13px;
}
.domain-results__suggestion .name {
  font-family: var(--mono); font-weight: 500; color: var(--ink);
  flex: 1; min-width: 0; word-break: break-all;
}
.domain-results__suggestion .price {
  font-family: var(--mono);
  color: var(--muted); font-weight: 400; font-size: 12px;
}
.domain-results__suggestion--taken { opacity: 0.55; }
.domain-results__suggestion--taken .price { text-decoration: line-through; }
.domain-results__suggestion button {
  font-family: var(--mono);
  font-size: 11px; color: var(--primary-deep); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.domain-results__suggestion button:hover { text-decoration: underline; }
.domain-results__error {
  font-family: var(--mono);
  color: var(--danger); font-size: 12px; padding: 4px 0;
  letter-spacing: 0.01em;
}

/* Heading above the "all supported TLDs" grid */
.domain-results__heading {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin: 18px 0 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.domain-results__progress {
  font-family: var(--mono); font-weight: 500;
  font-size: 11px; letter-spacing: 0;
  padding: 3px 10px; border-radius: 999px;
  background: var(--primary-50); color: var(--primary-deep);
  border: 1px solid var(--primary-100);
  text-transform: none;
}
.domain-results__progress.is-done {
  background: var(--success-soft); color: #3f7800;
  border-color: rgba(128, 199, 0, 0.35);
}

/* Pending suggestion row – greyed while its availability check is in-flight */
.domain-results__suggestion.is-pending {
  opacity: 0.7;
}
.domain-results__suggestion.is-pending .name { color: var(--muted-2); }
.dot-loader {
  display: inline-flex; align-items: center; gap: 3px;
  vertical-align: middle;
}
.dot-loader span {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--muted-2);
  animation: cw-dot 1.1s infinite ease-in-out both;
}
.dot-loader span:nth-child(1) { animation-delay: -0.32s; }
.dot-loader span:nth-child(2) { animation-delay: -0.16s; }
@keyframes cw-dot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1; }
}

/* SECTION HEAD */
section { position: relative; }
.section-head {
  text-align: center; max-width: 640px; margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05; letter-spacing: -0.028em;
  font-weight: 600; margin: 0 0 16px;
}
.section-head h2 em { font-style: normal; color: var(--primary); }
.section-head p { font-size: 17px; color: var(--muted); margin: 0; }

/* CONTENT PROSE (text-heavy subpages) */
.prose {
  max-width: 760px; margin: 0 auto;
  font-size: 16px; line-height: 1.7; color: var(--ink-2);
}
.prose h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2; letter-spacing: -0.02em;
  font-weight: 600; color: var(--ink);
  margin: 56px 0 18px;
}
.prose h3 {
  font-size: 20px; font-weight: 600; color: var(--ink);
  margin: 36px 0 12px; letter-spacing: -0.01em;
}
.prose h4 {
  font-size: 16px; font-weight: 600; color: var(--ink);
  margin: 24px 0 8px;
}
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol {
  margin: 0 0 22px; padding-left: 22px;
  list-style-position: outside;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose a {
  color: var(--primary-deep); font-weight: 500;
  border-bottom: 1px solid var(--primary-200);
}
.prose a:hover { border-bottom-color: var(--primary-deep); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose code {
  font-family: var(--mono); font-size: 0.92em;
  padding: 2px 6px; border-radius: 4px;
  background: var(--bg-soft); color: var(--primary-deep);
}
.prose blockquote {
  margin: 24px 0; padding: 16px 22px;
  border-left: 3px solid var(--primary);
  background: var(--primary-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-2);
}
.prose hr { margin: 40px 0; border: 0; border-top: 1px solid var(--border); }

.lede {
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
  max-width: 720px; margin: 0 auto 32px;
}

/* CALLOUT */
.callout {
  display: flex; gap: 14px;
  padding: 18px 20px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-lg);
  margin: 24px 0;
  color: var(--ink-2);
  font-size: 14px; line-height: 1.6;
}
.callout svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.callout strong { color: var(--ink); }
.callout--success { background: var(--success-soft); border-color: rgba(128, 199, 0, 0.35); }
.callout--success svg { color: #3f7800; }
.callout--warning { background: var(--warning-soft); border-color: rgba(245, 158, 11, 0.35); }
.callout--warning svg { color: #B45309; }
.callout--danger { background: var(--danger-soft); border-color: rgba(220, 38, 38, 0.3); }
.callout--danger svg { color: var(--danger); }

/* PLANS */
.plans { padding: 100px 0; background: var(--bg); }
.plans__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: stretch;
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}
.plan:hover {
  border-color: var(--primary-200);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.plan--featured {
  background: linear-gradient(180deg, #0B1A80 0%, #001dc0 100%);
  color: #fff;
  border-color: var(--primary-deep);
  box-shadow: 0 20px 40px -20px rgba(0, 29, 192, 0.4);
}
.plan--featured:hover { border-color: var(--primary); box-shadow: 0 30px 60px -20px rgba(0, 29, 192, 0.5); }
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--success); color: #08290A;
  padding: 5px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(128, 199, 0, 0.4);
}
.plan__name {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--primary); margin: 0 0 10px;
}
.plan--featured .plan__name { color: #AEC0FF; }
.plan__headline {
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em; margin: 0 0 12px; color: inherit;
}
.plan__desc { font-size: 14px; color: var(--muted); margin: 0 0 26px; min-height: 42px; }
.plan--featured .plan__desc { color: rgba(255, 255, 255, 0.7); }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan__price .currency { font-size: 22px; font-weight: 500; color: var(--muted); }
.plan--featured .plan__price .currency { color: rgba(255, 255, 255, 0.7); }
.plan__price .amount { font-size: 52px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.plan__price .period { font-size: 14px; color: var(--muted); margin-left: 4px; }
.plan--featured .plan__price .period { color: rgba(255, 255, 255, 0.7); }
.plan__yearly { font-size: 12px; color: var(--muted); margin-bottom: 22px; font-family: var(--mono); }
.plan--featured .plan__yearly { color: rgba(255, 255, 255, 0.6); }
.plan__btn {
  width: 100%; padding: 13px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s; margin-bottom: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer;
}
.plan .plan__btn { background: var(--ink); color: #fff; }
.plan .plan__btn:hover { background: var(--primary-deep); }
.plan--featured .plan__btn { background: #fff; color: var(--primary-deep); }
.plan--featured .plan__btn:hover { background: var(--success); color: #08290A; }
.plan__features {
  display: flex; flex-direction: column;
  gap: 11px; font-size: 14px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.plan--featured .plan__features { border-color: rgba(255, 255, 255, 0.15); }
.plan__features li { display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
.plan__features svg { flex-shrink: 0; color: var(--success); margin-top: 2px; }
.plan--featured .plan__features svg { color: #9EE533; }
.plan__features b { font-weight: 600; }
.plan__features .muted { color: var(--muted); font-size: 12px; }
.plan--featured .plan__features .muted { color: rgba(255, 255, 255, 0.55); }
.plans__foot { text-align: center; margin-top: 40px; font-size: 14px; color: var(--muted); }
.plans__foot a { color: var(--primary-deep); font-weight: 500; border-bottom: 1px dashed var(--primary-200); }

/* TECH / FEATURES */
.tech {
  padding: 100px 0; background: var(--card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.tech__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.2s;
}
.feat:hover { border-color: var(--primary-200); background: var(--primary-50); }
.feat__ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-50); border: 1px solid var(--primary-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 18px;
}
.feat__ico svg { width: 20px; height: 20px; }
.feat h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.feat p { font-size: 14px; color: var(--muted); margin: 0 0 16px; line-height: 1.55; }
.feat__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feat__tags span {
  font-family: var(--mono); font-size: 11px;
  padding: 4px 8px; background: var(--card);
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--ink-2); font-weight: 500;
}

/* DOMAIN PRICING TABLE (homepage) */
.domains { padding: 100px 0; background: var(--bg); }
.domains__inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; align-items: center;
}
.domains__left h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05; letter-spacing: -0.028em;
  font-weight: 600; margin: 18px 0 16px;
}
.domains__left h2 em { font-style: normal; color: var(--primary); }
.domains__left p { font-size: 16px; color: var(--muted); margin: 0 0 24px; max-width: 460px; }
.domains__left ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; margin-bottom: 28px; }
.domains__left ul li { display: flex; gap: 10px; align-items: center; }
.domains__left ul svg { color: var(--success); flex-shrink: 0; }

.tlds {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tlds__row {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  padding: 18px 22px; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.15s;
}
.tlds__row:last-child { border-bottom: 0; }
.tlds__row:hover { background: var(--primary-50); }
.tlds__row--head {
  background: var(--bg-soft); font-family: var(--mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); font-weight: 500;
}
.tlds__row--head:hover { background: var(--bg-soft); }
.tlds__tld {
  font-size: 20px; font-weight: 600; font-family: var(--mono);
  color: var(--primary-deep); letter-spacing: -0.02em;
}
.tlds__price { font-size: 16px; font-weight: 600; }
.tlds__price .per { font-size: 12px; color: var(--muted); font-weight: 400; }
.tlds__note { font-size: 13px; color: var(--muted); }
.tlds__btn { font-size: 13px; color: var(--primary-deep); font-weight: 500; white-space: nowrap; }
.tlds__btn:hover { text-decoration: underline; }
.tlds__btn form { display: inline-flex; }
.tlds__btn form button { font-size: 13px; color: var(--primary-deep); font-weight: 500; white-space: nowrap; border: 0; cursor: pointer; }
.tlds__btn form button:hover { text-decoration: underline; }

/* FULL PRICE TABLE (/domeny/cennik) */
.price-table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 40px 0;
}
.price-table table { width: 100%; border-collapse: collapse; }
.price-table thead th {
  background: var(--bg-soft);
  padding: 14px 18px; text-align: left;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.price-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover td { background: var(--primary-50); }
.price-table .tld {
  font-family: var(--mono); font-weight: 700;
  color: var(--primary-deep); font-size: 16px; letter-spacing: -0.01em;
}
.price-table .price { font-weight: 600; color: var(--ink); }
.price-table .price small { color: var(--muted); font-weight: 400; }
.price-table .muted { color: var(--muted); }
.price-table .action { text-align: right; }

/* WHY */
.why { padding: 100px 0; background: var(--card); border-top: 1px solid var(--border-soft); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why__item {
  padding: 28px 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg);
}
.why__ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, #4762FF 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 18px;
  box-shadow: 0 6px 14px -4px rgba(20, 55, 255, 0.4);
}
.why__ico svg { width: 22px; height: 22px; }
.why__item h3 { font-size: 16px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.why__item p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }

/* FAQ */
.faq { padding: 100px 0; background: var(--bg); }
.faq__list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: all 0.2s;
}
.faq details[open] { border-color: var(--primary-200); box-shadow: var(--shadow-sm); }
.faq summary {
  font-size: 16px; font-weight: 600;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 22px; color: var(--primary);
  font-weight: 400; transition: transform 0.2s;
}
.faq details[open] summary::after { content: '–'; }
.faq .faq__a { margin: 14px 0 0; font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq .faq__a p { margin: 0 0 10px; }
.faq .faq__a p:last-child { margin-bottom: 0; }
.faq .faq__group-title {
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--muted);
  margin: 32px 0 10px 10px;
}
.faq .faq__group-title:first-child { margin-top: 0; }

/* COMPARISON TABLE (hosting plans + decision guide) */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.compare { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare th, .compare td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}
.compare thead th {
  background: var(--bg-soft);
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted);
}
.compare thead th:not(:first-child) {
  text-align: center;
  font-size: 14px; font-family: var(--sans); text-transform: none;
  letter-spacing: -0.01em; color: var(--ink); font-weight: 600;
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody td:not(:first-child) { text-align: center; }
.compare tbody td:first-child { font-weight: 500; color: var(--ink-2); }
.compare .tick { color: var(--success); }
.compare .cross { color: var(--muted-2); }
.compare .th-featured {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 55, 255, 0.08) 0%, rgba(20, 55, 255, 0) 100%);
}
.compare tbody td.td-featured { background: rgba(20, 55, 255, 0.03); }
.compare tfoot td {
  padding: 20px 18px; text-align: center; border-bottom: 0;
  background: var(--bg-soft);
}

/* Info tooltip (small ⓘ icon with hover/focus tooltip) */
.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  vertical-align: middle;
  color: var(--muted);
  cursor: help;
  border-radius: 50%;
  outline: none;
  transition: color 0.15s ease;
}
.info-tip:hover,
.info-tip:focus-visible {
  color: var(--primary, #1437ff);
}
.info-tip svg {
  display: block;
}
.info-tip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 220px;
  max-width: 300px;
  padding: 10px 12px;
  background: var(--ink, #0a0f2c);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  white-space: normal;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(10, 15, 44, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 20;
}
.info-tip::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: var(--ink, #0a0f2c);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 20;
}
.info-tip:hover::after,
.info-tip:focus-visible::after,
.info-tip:hover::before,
.info-tip:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 680px) {
  .info-tip::after {
    min-width: 180px;
    max-width: 240px;
    font-size: 11px;
  }
}

/* CTA */
.cta {
  padding: 100px 0; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(20, 55, 255, 0.4), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(128, 199, 0, 0.15), transparent 40%),
    #0B1A80;
  color: #fff;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.cta__inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.028em; margin: 0 0 18px; font-weight: 600; }
.cta h2 em { font-style: normal; color: #9EE533; }
.cta p { font-size: 17px; color: rgba(255, 255, 255, 0.7); margin: 0 0 32px; }
.cta .btn--primary { background: #fff; color: var(--primary-deep); }
.cta .btn--primary:hover { background: var(--success); color: #08290A; }
.cta .btn--secondary { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.cta .btn--secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }

/* SPLIT SECTION (text+image or text+list) */
.split { padding: 80px 0; }
.split__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.split--reverse .split__inner > :first-child { order: 2; }
.split h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 600; margin: 12px 0 16px;
}
.split h2 em { font-style: normal; color: var(--primary); }
.split p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 16px; }
.split ul {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 20px; font-size: 15px;
}
.split ul li { display: flex; gap: 12px; align-items: flex-start; }
.split ul svg { color: var(--success); flex-shrink: 0; margin-top: 4px; }

/* FEATURE GRID (for niche pages) */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 40px 0;
}
.feature-card {
  padding: 24px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--card);
  transition: all 0.2s;
}
.feature-card:hover { border-color: var(--primary-200); box-shadow: var(--shadow-sm); }
.feature-card__ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-50); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 16px; font-weight: 600; margin: 0 0 8px; }
.feature-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* STEPS */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 24px; margin: 32px 0; }
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px; align-items: flex-start;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-deep);
  color: #fff; font-weight: 600; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -4px rgba(0, 29, 192, 0.35);
}
.step h3 { font-size: 17px; font-weight: 600; margin: 8px 0 6px; }
.step p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.6; }

/* CART */
.cart { padding: 60px 0 100px; }
.cart__grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 32px; align-items: start;
}
.cart__items {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cart__items-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding: 16px 24px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.cart__items-title {
  font-size: 13px; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.cart__items-sub { font-size: 12px; color: var(--muted); }
.cart__item {
  display: grid; grid-template-columns: auto 1fr auto auto;
  gap: 18px; align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-soft);
}
.cart__item:last-child { border-bottom: 0; }
.cart__item-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--primary-50); color: var(--primary-deep);
  flex-shrink: 0;
}
.cart__item[data-slot="hosting"] .cart__item-icon {
  background: var(--success-soft); color: #355605;
}
.cart__item-body { min-width: 0; }
.cart__item-name {
  font-weight: 600; color: var(--ink); font-size: 15px;
  margin-bottom: 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cart__item-meta { font-size: 13px; color: var(--muted); }
.cart__item-years {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 10px 0 0;
}
.cart__item-years label {
  font-size: 12px; color: var(--muted); font-weight: 500;
}
.cart__item-years select {
  padding: 6px 10px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 120ms, box-shadow 120ms;
}
.cart__item-years select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 55, 255, 0.12);
}
.cart__item-years select:hover { border-color: var(--ink-2); }
.cart__item-price { font-weight: 600; color: var(--ink); font-size: 15px; white-space: nowrap; }
.cart__item-remove-form { margin: 0; }
.cart__item-remove {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted);
  background: transparent;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 7px 11px; cursor: pointer;
  transition: all 0.15s;
}
.cart__item-remove svg { flex-shrink: 0; }
.cart__item-remove:hover { color: var(--danger); border-color: var(--danger); background: var(--danger-soft); }

/* Per-domain addon picker – appears beneath each domain line that has no
   hosting/vizitka bound yet, so the user can pick an addon scoped to that
   specific domain. */
.cart__addon-picker {
  margin: 8px 0 12px;
  padding: 14px 16px 16px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #F7F9FF 0%, #FFFFFF 70%);
}
.cart__addon-picker-head {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 12px;
}
.cart__addon-picker-head strong {
  font-size: 13px; color: var(--ink); font-weight: 600;
}
.cart__addon-picker-head span {
  font-size: 12px; color: var(--muted);
}
.cart__addon-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.cart__addon-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  margin: 0;
}
.cart__addon-card-head {
  display: flex; align-items: center; gap: 8px;
}
.cart__addon-card-name {
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.cart__addon-card-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #E7F8D1;
  color: #3d6b00;
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
}
.cart__addon-card-price {
  font-size: 13px; color: var(--muted); font-weight: 500;
}
.cart__addon-card .btn { width: 100%; padding: 9px 12px; font-size: 13px; }

/* Inline toast for cart AJAX feedback. On-brand: white card, primary-blue
   accent stripe that shifts by [data-type]. Auto-dismisses after ~3s. */
.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  max-width: 380px;
  padding: 12px 16px 12px 18px;
  border-radius: 12px;
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary-deep);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(15, 20, 25, 0.12);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}
.cart-toast.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cart-toast[data-type="success"] { border-left-color: var(--primary-deep); }
.cart-toast[data-type="error"]   { border-left-color: var(--danger); color: var(--danger); }
.cart-toast[data-type="info"]    { border-left-color: var(--primary); }

.cart__empty {
  padding: 60px 24px; text-align: center;
  color: var(--muted);
}
.cart__empty svg { margin: 0 auto 16px; color: var(--muted-2); }
.cart__empty h2 { font-size: 20px; color: var(--ink); margin: 0 0 8px; font-weight: 600; }
.cart__empty p { margin: 0 0 22px; }

.cart__summary {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 90px;
}
.cart__summary h3 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); font-weight: 600;
  margin: 0 0 16px;
}
.cart__summary-line {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  padding: 10px 0; font-size: 14px; color: var(--ink-2);
  border-bottom: 1px dashed var(--border-soft);
}
.cart__summary-line:last-of-type { border-bottom: 0; }
.cart__summary-line--discount {
  color: var(--success);
}
.cart__summary-line--discount > span:first-child {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
}
.cart__discount-remove { display: inline; margin: 0; }
.cart__discount-remove button {
  background: transparent; border: 0; padding: 0;
  font-size: 11px; color: var(--muted);
  text-decoration: underline; cursor: pointer;
}
.cart__discount-remove button:hover { color: var(--danger); }
.cart__summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0 8px; margin-top: 8px;
  border-top: 1px solid var(--border);
  font-size: 18px; font-weight: 700; color: var(--ink);
}
.cart__summary-note {
  margin: 10px 0 0; font-size: 12px; line-height: 1.5;
  color: var(--muted);
}
.cart__summary-note--warn {
  color: #8a5a00;
  background: var(--warning-soft);
  border: 1px solid #FDE9A8;
  border-radius: 10px;
  padding: 10px 12px;
}
.cart__discount-form {
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
  margin: 14px 0 4px;
}
.cart__discount-form input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 120ms, box-shadow 120ms;
}
.cart__discount-form input[type="text"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 55, 255, 0.12);
}
.cart__discount-form .btn { margin: 0; }
.cart__checkout-form { margin: 16px 0 0; }
.cart__checkout-form .btn {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart__checkout-form .btn[disabled] {
  opacity: 0.55; cursor: not-allowed; box-shadow: none;
}
.cart__summary-trust {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--border-soft);
  font-size: 12px; color: var(--muted);
}
.cart__summary-trust svg { color: var(--success); flex-shrink: 0; }

.cart__upsell {
  margin-top: 40px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
}
.cart__upsell .section-head { margin-bottom: 20px; text-align: left; }
.cart__upsell .section-head h2 { font-size: 22px; }

/* FOOTER */
footer {
  background: var(--card);
  border-top: 1px solid var(--border-soft);
  padding: 70px 0 30px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 48px; padding-bottom: 50px;
  border-bottom: 1px solid var(--border-soft);
}
.foot-brand p {
  font-size: 14px; color: var(--muted);
  max-width: 280px; margin: 16px 0 20px; line-height: 1.55;
}
.foot-brand .logo { margin-bottom: 0; }
.foot-brand__contact { font-size: 13px; color: var(--muted); line-height: 1.8; }
.foot-brand__contact b { color: var(--ink); font-weight: 600; }
.foot-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-2); margin: 0 0 18px; font-weight: 600;
}
.foot-col li { padding: 5px 0; font-size: 14px; }
.foot-col li a { color: var(--muted); transition: color 0.15s; }
.foot-col li a:hover { color: var(--primary-deep); }
.foot-col li a .tag {
  font-family: var(--mono); font-size: 9px;
  padding: 2px 6px; background: var(--success-soft);
  color: #355605; border-radius: 4px;
  margin-left: 6px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  vertical-align: middle;
}
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; gap: 20px; font-size: 13px;
  color: var(--muted); flex-wrap: wrap;
}
.foot-bottom .links { display: flex; gap: 22px; }
.foot-bottom a:hover { color: var(--primary-deep); }
.foot-bottom .status-inline { display: inline-flex; align-items: center; gap: 8px; }
.foot-bottom .status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(128, 199, 0, 0.2);
}

/* FORMS */
.form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.form__field input[type='text'],
.form__field input[type='email'],
.form__field input[type='tel'],
.form__field input[type='url'],
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 120ms, box-shadow 120ms;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 55, 255, 0.12);
}
.form__field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form__field small { font-size: 12px; color: var(--muted); }
.form__check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.form__check input[type='checkbox'] { margin-top: 3px; flex-shrink: 0; }
.form__check a { color: var(--primary); }
.form__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form__foot small { color: var(--muted); font-size: 12px; }
.form .error {
  color: var(--danger);
  font-size: 12px;
  margin-top: 4px;
}
@media (max-width: 680px) {
  .form__row { grid-template-columns: 1fr; }
  .form { padding: 24px; }
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .plans__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .tech__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .domains__inner { grid-template-columns: 1fr; gap: 40px; }
  .split__inner { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__inner > :first-child { order: 0; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .nav__menu { display: none; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 8px;
    border: 1px solid var(--border); background: var(--card);
    color: var(--ink-2);
  }
  .cart__grid { grid-template-columns: 1fr; }
  .cart__summary { position: static; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .hero { padding: 50px 0 70px; }
  .page-hero { padding: 40px 0 28px; }
  .page-hero h1 { margin: 10px 0 14px; }
  .hero__badges { gap: 14px; font-size: 12px; }
  .hero__ctas { gap: 10px; margin-bottom: 32px; }
  .hero__ctas .btn { flex: 1 1 100%; justify-content: center; }
  .domain-card { padding: 18px 18px 16px; margin-top: 40px; }
  .domain-form { flex-wrap: wrap; padding: 4px; gap: 4px; }
  .domain-form input { width: 100%; min-width: 0; font-size: 16px; padding: 10px 12px; }
  .domain-form button[type='submit'] { padding: 0 18px; flex: 1 1 auto; justify-content: center; min-height: 42px; }
  .domain-card__tlds { gap: 12px; font-size: 11px; }
  .tech__grid, .why__grid { grid-template-columns: 1fr; }
  .tlds__row { grid-template-columns: 1fr auto; row-gap: 6px; }
  .tlds__row .tlds__note, .tlds__row .tlds__btn { display: none; }
  .tlds__row--head { display: none; }
  .plans, .tech, .domains, .why, .faq, .cta, .split { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .plan { padding: 26px 22px; }
  .plan__headline { font-size: 20px; line-height: 1.25; }
  .plan__desc { font-size: 13px; min-height: 0; margin-bottom: 22px; }
  .plan__price .amount { font-size: 44px; }
  .plans__grid { gap: 28px; }
  .foot-top { gap: 36px 24px; padding-bottom: 36px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .nav__right .btn--ghost { display: none; }
  .nav__right { gap: 8px; }
  .nav__inner { height: 60px; gap: 12px; }
  .nav__cart { padding: 8px 10px; gap: 6px; }
  .nav__cart span:not(.badge) { display: none; }
  .nav__right .btn--primary { padding: 9px 14px; font-size: 13px; }
  .logo { font-size: 17px; }
  .logo img { width: 32px; height: 32px; }
  .domain-results__primary { flex-wrap: wrap; }
  .feature-grid { grid-template-columns: 1fr; }
  .cart__item { grid-template-columns: auto 1fr; gap: 12px 14px; padding: 18px 18px; }
  .cart__item-icon { grid-row: 1 / span 2; }
  .cart__item-body { grid-column: 2; }
  .cart__item-price { grid-column: 2; font-size: 16px; }
  .cart__item-remove-form { grid-column: 1 / -1; justify-self: end; }
  .cart__items-head { padding: 14px 18px; }
  .cart__upsell { padding: 22px; }
  .compare { min-width: 560px; }
  .compare th, .compare td { padding: 11px 12px; font-size: 13px; }
  .compare-wrap { position: relative; }
  .compare-wrap::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; width: 32px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--card) 100%);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  }
  .crumbs { padding: 12px 0 0; }
  .test-banner { font-size: 12px; padding: 8px 14px; }
  .price-table thead th,
  .price-table tbody td { padding: 12px 10px; font-size: 13px; }
  .price-table .tld { font-size: 14px; }
  .callout { padding: 14px 16px; }
  .prose h2 { margin: 40px 0 14px; }
  .prose h3 { margin: 28px 0 10px; }
  .faq details { padding: 16px 18px; }
  .faq summary { font-size: 15px; gap: 12px; }
  .domains__inner { gap: 30px; }
  .btn, .btn--lg { min-height: 44px; }
}

@media (max-width: 480px) {
  :root { --gutter: 16px; }
  .hero { padding: 36px 0 52px; }
  .hero h1 { margin: 16px auto 16px; }
  .hero__sub { margin-bottom: 28px; }
  .hero__ctas { margin-bottom: 28px; }
  .hero__badges { gap: 12px 18px; font-size: 11px; }
  .page-hero { padding: 30px 0 20px; }
  .plans, .tech, .domains, .why, .faq, .cta, .split { padding: 48px 0; }
  .plan { padding: 24px 20px; }
  .plan__headline { font-size: 18px; }
  .plan__price .amount { font-size: 38px; }
  .plan__price .currency { font-size: 18px; }
  .plans__grid { gap: 40px; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { margin-bottom: 12px; }
  .domain-card { padding: 14px 14px 12px; margin-top: 32px; }
  .domain-card__head { flex-direction: column; align-items: flex-start; gap: 4px; padding-bottom: 10px; margin-bottom: 10px; }
  .domain-card__hint { font-size: 10px; }
  .compare { min-width: 480px; }
  .compare th, .compare td { padding: 9px 10px; font-size: 12px; }
  .tlds__row { padding: 14px 16px; }
  .tlds__tld { font-size: 17px; }
  .price-table thead th,
  .price-table tbody td { padding: 10px 8px; font-size: 12px; }
  .form { padding: 20px; }
  .cta { padding: 56px 0; }
  .cta h2 { margin-bottom: 14px; }
  .cta p { font-size: 15px; margin-bottom: 26px; }
  .faq details { padding: 14px 16px; }
  .info-tip::after { min-width: 160px; max-width: 220px; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .foot-col h4 { margin-bottom: 12px; }
  .foot-col li { padding: 3px 0; }
  footer { padding: 48px 0 24px; }
  .nav__inner { height: 56px; gap: 10px; }
  .nav__cart { padding: 7px 9px; }
  .nav__right .btn--primary { display: none; }
  .step { grid-template-columns: 36px 1fr; gap: 14px; }
  .step::before { width: 36px; height: 36px; font-size: 16px; border-radius: 10px; }
  .crumbs { font-size: 12px; }
  .callout { flex-direction: column; gap: 10px; padding: 14px 16px; font-size: 13px; }
  .domain-results__primary { padding: 12px 14px 12px 30px; gap: 10px; }
  .domain-results__primary::before { left: 12px; }
  .domain-results__name { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
