:root {
  --xw-bg: #f6fafb;
  --xw-bg-soft: #edf5f7;
  --xw-surface: rgba(255, 255, 255, 0.88);
  --xw-surface-strong: #ffffff;
  --xw-border: rgba(43, 82, 102, 0.16);
  --xw-border-strong: rgba(47, 127, 140, 0.36);
  --xw-text: #173b55;
  --xw-muted: #607486;
  --xw-primary: #4668b1;
  --xw-primary-2: #2f7f8c;
  --xw-cyan: #2f94a2;
  --xw-green: #3a9a75;
  --xw-red: #fb7185;
  --xw-yellow: #fbbf24;
  --xw-shadow: 0 26px 70px rgba(39, 72, 89, 0.14);
  --xw-radius-sm: 14px;
  --xw-radius: 22px;
  --xw-radius-lg: 32px;
  --xw-shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.xw-site {
  margin: 0;
  min-width: 320px;
  color: var(--xw-text);
  background:
    radial-gradient(circle at 12% -10%, rgba(117, 150, 210, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 18%, rgba(97, 186, 178, 0.14), transparent 30rem),
    var(--xw-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.xw-site a { color: inherit; }
body.xw-site img { max-width: 100%; }
body.xw-site button,
body.xw-site input { font: inherit; }
body.xw-site button { cursor: pointer; }
body.xw-site ::selection { color: #fff; background: rgba(139, 92, 246, 0.7); }

.xw-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: #fff;
  background: #111827;
  border-radius: 10px;
}
.xw-skip-link:focus { transform: translateY(0); }

.xw-shell {
  width: min(calc(100% - 40px), var(--xw-shell));
  margin-inline: auto;
}
.xw-section { position: relative; padding: 108px 0; }
.xw-section--compact { padding: 76px 0; }
.xw-section--soft {
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.004));
  border-block: 1px solid rgba(255,255,255,.045);
}
.xw-section-heading {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}
.xw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.xw-kicker::before {
  width: 24px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--xw-cyan));
}
.xw-section-heading h2,
.xw-section-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -.055em;
}
.xw-section-heading p,
.xw-section-copy > p {
  margin: 20px auto 0;
  color: var(--xw-muted);
  font-size: clamp(1rem, 2vw, 1.13rem);
}
.xw-gradient-text {
  color: transparent;
  background: linear-gradient(115deg, #fff 5%, #c4b5fd 38%, #67e8f9 82%);
  -webkit-background-clip: text;
  background-clip: text;
}

.xw-announcement {
  position: relative;
  z-index: 51;
  color: #dbeafe;
  background: linear-gradient(90deg, rgba(76,29,149,.7), rgba(30,64,175,.56), rgba(8,145,178,.5));
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}
.xw-announcement__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.xw-announcement__badge {
  padding: 3px 8px;
  color: #071018;
  background: #a7f3d0;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.xw-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  color: var(--xw-text);
  background: rgba(7, 9, 20, .68);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(140%);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.xw-header.is-scrolled {
  background: rgba(7, 9, 20, .92);
  border-color: var(--xw-border);
  box-shadow: 0 14px 40px rgba(0,0,0,.2);
}
.xw-header__inner {
  display: grid;
  min-height: 76px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
}
.xw-brand {
  display: inline-flex;
  width: 176px;
  align-items: center;
  text-decoration: none;
}
.xw-brand img { display: block; width: 176px; height: auto; }
.xw-nav { justify-self: center; }
.xw-nav__list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.xw-nav__link {
  display: inline-flex;
  padding: 10px 13px;
  color: #cbd5e1;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.xw-nav__link:hover,
.xw-nav__link:focus-visible { color: #fff; background: rgba(255,255,255,.06); }
.xw-nav__login { display: none; }
.xw-header__actions { display: flex; align-items: center; gap: 9px; }
.xw-cart-link {
  position: relative;
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--xw-border);
  border-radius: 13px;
  text-decoration: none;
}
.xw-cart-link svg { width: 19px; }
.xw-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 5px;
  color: #fff;
  background: var(--xw-primary);
  border: 2px solid var(--xw-bg);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}
.xw-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--xw-border);
  border-radius: 13px;
}
.xw-menu-toggle span,
.xw-menu-toggle span::before,
.xw-menu-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 4px;
  transition: transform .2s ease, opacity .2s ease;
}
.xw-menu-toggle span { position: relative; }
.xw-menu-toggle span::before { position: absolute; top: -6px; }
.xw-menu-toggle span::after { position: absolute; top: 6px; }
.xw-menu-toggle[aria-expanded="true"] span { background: transparent; }
.xw-menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.xw-menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.xw-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--xw-primary), var(--xw-primary-2));
  border: 1px solid transparent;
  border-radius: 13px;
  box-shadow: 0 12px 30px rgba(99,102,241,.2);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.xw-button:hover,
.xw-button:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(99,102,241,.3); }
.xw-button--ghost {
  color: #e2e8f0;
  background: rgba(255,255,255,.045);
  border-color: var(--xw-border);
  box-shadow: none;
}
.xw-button--ghost:hover { border-color: rgba(139,92,246,.45); box-shadow: none; }
.xw-button--light { color: #111827; background: #fff; box-shadow: 0 14px 36px rgba(255,255,255,.1); }
.xw-button--wide { width: 100%; }
.xw-button svg { width: 18px; height: 18px; }
.xw-button[disabled] { cursor: wait; opacity: .72; transform: none; }

.xw-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: 88px 0 74px;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: 112px;
}
.xw-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}
.xw-hero__orb {
  position: absolute;
  width: 560px;
  height: 560px;
  top: 1%;
  right: -180px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(99,102,241,.2), rgba(34,211,238,.04) 45%, transparent 68%);
  filter: blur(4px);
}
.xw-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(42px, 5vw, 72px);
}
.xw-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: #c4b5fd;
  background: rgba(139,92,246,.09);
  border: 1px solid rgba(139,92,246,.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.xw-live-dot {
  width: 8px;
  height: 8px;
  background: var(--xw-green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(52,211,153,.12), 0 0 18px rgba(52,211,153,.55);
}
.xw-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.35rem);
  font-weight: 850;
  line-height: .97;
  letter-spacing: -.072em;
}
.xw-hero__lead {
  max-width: 655px;
  margin: 26px 0 0;
  color: var(--xw-muted);
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  line-height: 1.72;
}
.xw-hero-offer {
  display: grid;
  width: max-content;
  max-width: 100%;
  margin-top: 28px;
  padding: 12px 18px 13px;
  background: linear-gradient(135deg, rgba(139,92,246,.12), rgba(34,211,238,.045));
  border: 1px solid rgba(139,92,246,.24);
  border-radius: 16px;
}
.xw-hero-offer > span { color: #a5b4fc; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.xw-hero-offer strong { margin-top: 1px; color: #fff; font-size: 27px; line-height: 1.12; letter-spacing: -.045em; }
.xw-hero-offer strong small { margin-left: 6px; color: #cbd5e1; font-size: 11px; font-weight: 700; letter-spacing: 0; }
.xw-hero-offer em { margin-top: 3px; color: #86efac; font-size: 10px; font-style: normal; font-weight: 750; }
.xw-hero__actions { display: flex; margin-top: 34px; flex-wrap: wrap; gap: 12px; }
.xw-hero__proof {
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: #cbd5e1;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}
.xw-hero__proof li { display: inline-flex; align-items: center; gap: 8px; }
.xw-check {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  color: #052e2b;
  background: #6ee7b7;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.xw-server-card {
  position: relative;
  padding: 1px;
  background: linear-gradient(145deg, rgba(139,92,246,.72), rgba(34,211,238,.16), rgba(255,255,255,.05));
  border-radius: 28px;
  box-shadow: var(--xw-shadow);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
}
.xw-server-card::before {
  position: absolute;
  z-index: -1;
  inset: 13% 8% -8%;
  content: "";
  background: rgba(99,102,241,.28);
  filter: blur(52px);
}
.xw-server-card__inner {
  padding: 24px;
  background: linear-gradient(160deg, rgba(19,24,46,.98), rgba(9,12,25,.97));
  border-radius: 27px;
}
.xw-server-card__top { display: flex; align-items: center; justify-content: space-between; }
.xw-server-card__name { display: flex; align-items: center; gap: 11px; font-weight: 800; }
.xw-server-card__mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--xw-primary), var(--xw-cyan));
  border-radius: 11px;
}
.xw-server-card__status { color: #86efac; font-size: 12px; font-weight: 800; }
.xw-server-rack { display: grid; margin-top: 24px; gap: 11px; }
.xw-server-row {
  display: grid;
  min-height: 66px;
  padding: 0 16px;
  align-items: center;
  color: #dbeafe;
  background: rgba(255,255,255,.034);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 15px;
  grid-template-columns: 1fr auto;
}
.xw-server-row__label { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 750; }
.xw-server-lights { display: flex; gap: 5px; }
.xw-server-lights i { width: 7px; height: 7px; background: #475569; border-radius: 50%; }
.xw-server-lights i:nth-child(1) { background: var(--xw-green); box-shadow: 0 0 10px rgba(52,211,153,.6); }
.xw-server-lights i:nth-child(2) { background: var(--xw-cyan); }
.xw-server-card__metrics { display: grid; margin-top: 16px; grid-template-columns: repeat(3,1fr); gap: 10px; }
.xw-mini-metric {
  padding: 13px 11px;
  text-align: center;
  background: rgba(139,92,246,.06);
  border: 1px solid rgba(139,92,246,.12);
  border-radius: 13px;
}
.xw-mini-metric strong { display: block; color: #fff; font-size: 14px; }
.xw-mini-metric span { color: var(--xw-muted); font-size: 10px; }

.xw-trust-bar { position: relative; z-index: 3; padding: 0 0 34px; }
.xw-trust-bar__inner {
  display: grid;
  min-height: 88px;
  align-items: center;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--xw-border);
  border-radius: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.xw-trust-item { position: relative; display: flex; padding: 18px 22px; align-items: center; gap: 12px; }
.xw-trust-item:not(:last-child)::after {
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  content: "";
  background: var(--xw-border);
}
.xw-trust-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  color: #c4b5fd;
  background: rgba(139,92,246,.1);
  border-radius: 12px;
}
.xw-trust-icon svg { width: 20px; }
.xw-trust-item strong { display: block; font-size: 13px; }
.xw-trust-item span { display: block; color: var(--xw-muted); font-size: 11px; }

.xw-domain-panel {
  position: relative;
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(34,211,238,.11), transparent 20rem),
    linear-gradient(145deg, rgba(21,26,51,.96), rgba(12,15,31,.96));
  border: 1px solid var(--xw-border);
  border-radius: var(--xw-radius-lg);
  box-shadow: var(--xw-shadow);
}
.xw-domain-panel--hero {
  padding: clamp(25px, 3.4vw, 38px);
  background:
    radial-gradient(circle at 92% 4%, rgba(34,211,238,.14), transparent 16rem),
    linear-gradient(150deg, rgba(24,30,58,.98), rgba(11,14,29,.99));
  border-color: rgba(139,92,246,.34);
  box-shadow: 0 38px 90px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.018) inset;
}
.xw-domain-panel--hero::before {
  position: absolute;
  width: 210px;
  height: 210px;
  top: -120px;
  right: -90px;
  content: "";
  pointer-events: none;
  background: rgba(99,102,241,.24);
  border-radius: 50%;
  filter: blur(35px);
}
.xw-domain-panel--hero .xw-domain-panel__top { position: relative; z-index: 1; grid-template-columns: 1fr; }
.xw-domain-panel--hero h2 { max-width: none; font-size: clamp(2rem, 4vw, 3rem); }
.xw-domain-panel--hero .xw-domain-panel__top p { max-width: 460px; margin-top: 10px; font-size: 13px; }
.xw-domain-panel--hero .xw-domain-search { position: relative; z-index: 1; margin-top: 24px; }
.xw-domain-search:focus-within { box-shadow: 0 20px 52px rgba(0,0,0,.32), 0 0 0 4px rgba(139,92,246,.16); }
.xw-domain-auto-help { display: block; margin: 9px 5px 0; color: #93a4bc; font-size: 10px; }
.xw-domain-assurance { display: flex; margin: 20px 0 0; align-items: flex-start; gap: 8px; color: #8f9cb0; font-size: 10px; line-height: 1.55; }
.xw-domain-assurance span { display: grid; width: 17px; height: 17px; flex: 0 0 17px; place-items: center; color: #052e2b; background: #6ee7b7; border-radius: 50%; font-size: 9px; font-weight: 900; }
.xw-domain-panel__top { display: grid; align-items: end; grid-template-columns: 1fr auto; gap: 24px; }
.xw-domain-panel h2 { max-width: 650px; margin: 0; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.06; letter-spacing: -.05em; }
.xw-domain-panel__top p { max-width: 560px; margin: 16px 0 0; color: var(--xw-muted); }
.xw-domain-search {
  display: grid;
  margin-top: 32px;
  padding: 7px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  grid-template-columns: 1fr auto;
}
.xw-domain-search input {
  min-width: 0;
  height: 58px;
  padding: 0 19px;
  color: #111827;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-weight: 650;
}
.xw-domain-search button { min-height: 58px; padding-inline: 26px; border: 0; }
.xw-tld-list { display: flex; margin-top: 21px; flex-wrap: wrap; gap: 9px; }
.xw-tld-chip {
  display: inline-flex;
  padding: 8px 12px;
  align-items: center;
  gap: 7px;
  color: #dbeafe;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--xw-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}
.xw-tld-chip strong { color: #67e8f9; }
.xw-domain-results { display: grid; margin-top: 22px; gap: 10px; }
.xw-domain-result {
  display: grid;
  min-height: 76px;
  padding: 15px 17px;
  align-items: center;
  background: rgba(7,9,20,.65);
  border: 1px solid var(--xw-border);
  border-radius: 15px;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
}
.xw-domain-result__name { font-size: 17px; font-weight: 850; }
.xw-domain-result__status { padding: 5px 9px; border-radius: 999px; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.xw-domain-result__status--available { color: #052e2b; background: #6ee7b7; }
.xw-domain-result__status--taken { color: #fff; background: rgba(251,113,133,.75); }
.xw-domain-result__status--unknown { color: #422006; background: #fde68a; }
.xw-domain-result__price { min-width: 130px; text-align: right; }
.xw-domain-result__price strong { display: block; color: #fff; }
.xw-domain-result__price span { color: var(--xw-muted); font-size: 10px; }
.xw-domain-result .xw-button { min-height: 38px; padding: 0 13px; font-size: 11px; }
.xw-domain-message { padding: 14px 16px; color: #dbeafe; background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.18); border-radius: 13px; font-size: 13px; }

.xw-section--journey { padding-top: 84px; padding-bottom: 92px; }
.xw-journey-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.xw-journey-grid::before {
  position: absolute;
  top: 36px;
  left: 16.5%;
  right: 16.5%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(139,92,246,.08), rgba(139,92,246,.55), rgba(34,211,238,.45), rgba(34,211,238,.08));
}
.xw-journey-card {
  position: relative;
  z-index: 1;
  min-height: 270px;
  padding: 27px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(20,25,48,.88), rgba(11,14,29,.9));
  border: 1px solid var(--xw-border);
  border-radius: var(--xw-radius);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.xw-journey-card:hover { transform: translateY(-5px); background: linear-gradient(165deg, rgba(28,34,62,.92), rgba(12,15,31,.94)); border-color: rgba(139,92,246,.3); }
.xw-journey-card__number { display: grid; width: 50px; height: 50px; place-items: center; color: #fff; background: linear-gradient(145deg, rgba(139,92,246,.9), rgba(34,211,238,.55)); border: 5px solid #101429; border-radius: 16px; font-size: 12px; font-weight: 900; box-shadow: 0 10px 28px rgba(99,102,241,.22); }
.xw-journey-card__label { display: block; margin-top: 24px; color: #a5b4fc; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.xw-journey-card h3 { margin: 7px 0 0; font-size: 21px; letter-spacing: -.025em; }
.xw-journey-card p { margin: 10px 0 0; color: var(--xw-muted); font-size: 13px; }
.xw-journey-card a { display: inline-flex; margin-top: 20px; align-items: center; gap: 8px; color: #c4b5fd; font-size: 12px; font-weight: 850; text-decoration: none; }
.xw-journey-card a:hover { color: #fff; }

.xw-pricing-meta {
  display: inline-flex;
  margin-top: 22px;
  padding: 7px 12px;
  color: #a7f3d0;
  background: rgba(52,211,153,.07);
  border: 1px solid rgba(52,211,153,.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.xw-pricing-grid { display: grid; align-items: stretch; grid-template-columns: repeat(4,1fr); gap: 16px; }
.xw-price-card {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 27px 23px 23px;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(20,25,48,.94), rgba(11,14,29,.94));
  border: 1px solid var(--xw-border);
  border-radius: var(--xw-radius);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.xw-price-card:hover { transform: translateY(-7px); border-color: rgba(139,92,246,.32); box-shadow: 0 26px 55px rgba(0,0,0,.22); }
.xw-price-card--popular {
  background: linear-gradient(165deg, rgba(45,34,92,.96), rgba(16,20,42,.98));
  border-color: rgba(139,92,246,.58);
  box-shadow: 0 24px 65px rgba(76,29,149,.22);
}
.xw-price-card--popular::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  content: "";
  background: linear-gradient(145deg, rgba(139,92,246,.72), rgba(34,211,238,.3), transparent 65%);
  border-radius: inherit;
  filter: blur(14px);
  opacity: .4;
}
.xw-price-badge {
  position: absolute;
  top: 0;
  right: 20px;
  padding: 6px 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--xw-primary), var(--xw-primary-2));
  border-radius: 0 0 10px 10px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.xw-price-card__eyebrow { color: #a5b4fc; font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.xw-price-card h3 { margin: 7px 0 0; font-size: 22px; line-height: 1.15; letter-spacing: -.03em; }
.xw-price-card__desc { min-height: 62px; margin: 12px 0 0; color: var(--xw-muted); font-size: 12px; line-height: 1.55; }
.xw-price { display: flex; margin-top: 24px; align-items: flex-end; gap: 6px; }
.xw-price__currency { align-self: flex-start; margin-top: 8px; color: #c4b5fd; font-size: 13px; font-weight: 900; }
.xw-price__amount { font-size: clamp(2.45rem, 4.5vw, 3.3rem); font-weight: 900; line-height: .9; letter-spacing: -.06em; }
.xw-price__period { color: var(--xw-muted); font-size: 11px; }
.xw-price-card__equivalent { margin-top: 7px; color: #8390a5; font-size: 10px; }
.xw-price-card__billing {
  display: grid;
  margin-top: 16px;
  padding: 14px;
  gap: 8px;
  color: #cbd5e1;
  background: rgba(255,255,255,.028);
  border: 1px solid var(--xw-border);
  border-radius: 13px;
  font-size: 11px;
}
.xw-price-card__billing > div { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.xw-price-card__billing span { color: #96a2b6; font-size: 10px; }
.xw-price-card__billing strong { color: #fff; font-size: 11px; text-align: right; }
.xw-price-card__billing small { padding-top: 8px; color: #86efac; border-top: 1px solid rgba(255,255,255,.055); font-size: 9px; font-weight: 750; }
.xw-feature-list { display: grid; margin: 20px 0 25px; padding: 0; gap: 11px; list-style: none; }
.xw-feature-list li { display: flex; align-items: flex-start; gap: 9px; color: #d8deea; font-size: 12px; line-height: 1.45; }
.xw-feature-list .xw-check { width: 17px; height: 17px; flex-basis: 17px; margin-top: 1px; font-size: 9px; }
.xw-price-card .xw-button { margin-top: auto; }
.xw-pricing-note { margin: 20px auto 0; color: var(--xw-muted); text-align: center; font-size: 11px; }

.xw-benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.xw-benefit-card {
  min-height: 235px;
  padding: 26px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--xw-border);
  border-radius: var(--xw-radius);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.xw-benefit-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.04); border-color: rgba(34,211,238,.22); }
.xw-benefit-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #c4b5fd;
  background: linear-gradient(145deg, rgba(139,92,246,.16), rgba(34,211,238,.07));
  border: 1px solid rgba(139,92,246,.19);
  border-radius: 15px;
}
.xw-benefit-card__icon svg { width: 23px; }
.xw-benefit-card h3 { margin: 20px 0 0; font-size: 18px; }
.xw-benefit-card p { margin: 10px 0 0; color: var(--xw-muted); font-size: 13px; }

.xw-section--panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(139,92,246,.13), transparent 24rem),
    radial-gradient(circle at 90% 84%, rgba(34,211,238,.07), transparent 24rem),
    rgba(255,255,255,.008);
  border-block: 1px solid rgba(255,255,255,.04);
}
.xw-panel-intro { display: grid; margin-bottom: 46px; align-items: end; grid-template-columns: minmax(0,1fr) auto; gap: 42px; }
.xw-panel-intro > div:first-child { max-width: 810px; }
.xw-panel-intro h2 { margin: 0; font-size: clamp(2.35rem,5vw,4.3rem); line-height: 1.02; letter-spacing: -.057em; }
.xw-panel-intro p { max-width: 740px; margin: 20px 0 0; color: var(--xw-muted); font-size: 1.03rem; }
.xw-panel-intro__actions { display: flex; align-items: stretch; flex-direction: column; gap: 9px; }

.xw-panel-preview {
  display: grid;
  min-height: 690px;
  overflow: hidden;
  color: #172033;
  background: #eef2f8;
  border: 1px solid rgba(196,181,253,.32);
  border-radius: 30px;
  box-shadow: 0 42px 100px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.04) inset;
  grid-template-columns: 218px minmax(0,1fr);
}
.xw-panel-sidebar {
  display: flex;
  padding: 24px 17px 20px;
  flex-direction: column;
  color: #cbd5e1;
  background:
    radial-gradient(circle at 20% 5%, rgba(139,92,246,.24), transparent 14rem),
    linear-gradient(175deg, #11172c, #090d1c 68%);
  border-right: 1px solid rgba(255,255,255,.07);
}
.xw-panel-brand { display: flex; padding: 0 8px 27px; align-items: center; gap: 10px; color: #fff; }
.xw-panel-brand > span { display: grid; width: 35px; height: 35px; place-items: center; background: linear-gradient(135deg,var(--xw-primary),var(--xw-cyan)); border-radius: 11px; font-size: 14px; font-weight: 900; }
.xw-panel-brand strong { font-size: 17px; letter-spacing: -.025em; }
.xw-panel-sidebar__caption { padding: 0 10px 8px; color: #66738c; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.xw-panel-sidebar nav { display: grid; gap: 4px; }
.xw-panel-sidebar nav > span { display: flex; min-height: 41px; padding: 0 10px; align-items: center; gap: 10px; color: #8f9cb3; border: 1px solid transparent; border-radius: 11px; font-size: 11px; font-weight: 750; }
.xw-panel-sidebar nav > span.is-active { color: #fff; background: linear-gradient(90deg, rgba(139,92,246,.22), rgba(99,102,241,.08)); border-color: rgba(139,92,246,.2); }
.xw-panel-sidebar nav i { display: grid; width: 22px; height: 22px; place-items: center; color: #a5b4fc; background: rgba(255,255,255,.045); border-radius: 7px; font-size: 10px; font-style: normal; font-weight: 850; }
.xw-panel-sidebar__support { display: grid; margin-top: auto; padding: 14px; gap: 3px; color: #8491a9; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.06); border-radius: 13px; font-size: 9px; }
.xw-panel-sidebar__support strong { color: #c4b5fd; font-size: 10px; }

.xw-panel-main { min-width: 0; padding: 22px clamp(20px,3vw,34px) 30px; background: radial-gradient(circle at 90% 0, rgba(99,102,241,.1), transparent 25rem), #f4f6fb; }
.xw-panel-topbar { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 20px; }
.xw-panel-topbar > div { display: flex; align-items: center; gap: 12px; }
.xw-panel-topbar strong { color: #172033; font-size: 17px; }
.xw-panel-avatar { display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: linear-gradient(135deg,#6d5ae6,#4f46e5); border-radius: 12px; font-size: 10px; font-weight: 900; box-shadow: 0 9px 22px rgba(79,70,229,.22); }
.xw-panel-status { display: inline-flex; width: max-content; padding: 5px 8px; color: #166534; background: #dcfce7; border: 1px solid #bbf7d0; border-radius: 999px; font-size: 8px; font-weight: 900; letter-spacing: .035em; text-transform: uppercase; }
.xw-panel-status--preview { color: #5b21b6; background: #ede9fe; border-color: #ddd6fe; }
.xw-panel-notice { display: flex; margin-top: 17px; padding: 13px 15px; align-items: flex-start; gap: 11px; color: #475569; background: #fff; border: 1px solid #dbe3ee; border-radius: 13px; box-shadow: 0 6px 18px rgba(15,23,42,.035); }
.xw-panel-notice__icon { display: grid; width: 22px; height: 22px; flex: 0 0 22px; place-items: center; color: #fff; background: #7c3aed; border-radius: 7px; font-size: 11px; font-weight: 900; }
.xw-panel-notice p { margin: 1px 0 0; font-size: 10px; line-height: 1.55; }
.xw-panel-notice strong { color: #312e81; }
.xw-panel-service { display: flex; margin-top: 16px; padding: 17px 18px; align-items: center; justify-content: space-between; gap: 18px; background: linear-gradient(135deg,#fff,#f8f9fd); border: 1px solid #dde4ee; border-radius: 16px; box-shadow: 0 9px 24px rgba(15,23,42,.04); }
.xw-panel-service__identity { display: flex; min-width: 0; align-items: center; gap: 12px; }
.xw-panel-site-icon { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; color: #fff; background: linear-gradient(145deg,#0f172a,#334155); border-radius: 12px; font-size: 15px; font-weight: 900; }
.xw-panel-service__identity > div { display: grid; min-width: 0; }
.xw-panel-service__identity small { color: #8a96a9; font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.xw-panel-service__identity strong { overflow: hidden; color: #172033; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.xw-panel-service__identity div > span { color: #7a879b; font-size: 9px; }
.xw-panel-metrics { display: grid; margin-top: 13px; grid-template-columns: repeat(4,1fr); gap: 10px; }
.xw-panel-metrics > div { display: grid; min-width: 0; padding: 13px; gap: 2px; background: #fff; border: 1px solid #e0e6ef; border-radius: 13px; box-shadow: 0 6px 16px rgba(15,23,42,.028); }
.xw-panel-metrics span { color: #8b97a9; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.xw-panel-metrics strong { color: #273248; font-size: 13px; }
.xw-panel-metrics small { overflow: hidden; color: #97a2b3; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.xw-panel-tools { margin-top: 15px; padding: 18px; background: #fff; border: 1px solid #dde4ee; border-radius: 16px; box-shadow: 0 8px 22px rgba(15,23,42,.035); }
.xw-panel-tools__heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.xw-panel-tools__heading > div { display: grid; }
.xw-panel-tools__heading strong { color: #172033; font-size: 13px; }
.xw-panel-tools__heading div > span { color: #8b97a9; font-size: 8px; }
.xw-panel-tools__heading > span { color: #7c3aed; font-size: 8px; font-weight: 850; }
.xw-panel-tool-grid { display: grid; margin-top: 14px; grid-template-columns: repeat(3,1fr); gap: 8px; }
.xw-panel-tool-grid > div { display: flex; min-width: 0; min-height: 66px; padding: 10px; align-items: center; gap: 9px; background: #f8f9fc; border: 1px solid #e7ebf2; border-radius: 11px; }
.xw-panel-tool-grid i { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; color: #6d28d9; background: #ede9fe; border-radius: 9px; font-size: 8px; font-style: normal; font-weight: 900; }
.xw-panel-tool-grid > div > span { display: grid; min-width: 0; }
.xw-panel-tool-grid strong { overflow: hidden; color: #334155; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.xw-panel-tool-grid small { color: #929daf; font-size: 7px; }
.xw-panel-disclaimer { max-width: 840px; margin: 20px auto 0; color: #748197; text-align: center; font-size: 10px; }

.xw-split { display: grid; align-items: center; grid-template-columns: .94fr 1.06fr; gap: clamp(48px, 8vw, 105px); }
.xw-section-copy { max-width: 540px; }
.xw-section-copy .xw-kicker { margin-bottom: 14px; }
.xw-step-list { display: grid; margin-top: 29px; gap: 17px; }
.xw-step { display: grid; align-items: start; grid-template-columns: 46px 1fr; gap: 14px; }
.xw-step__number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, rgba(139,92,246,.75), rgba(99,102,241,.75));
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
}
.xw-step h3 { margin: 1px 0 0; font-size: 16px; }
.xw-step p { margin: 4px 0 0; color: var(--xw-muted); font-size: 12px; }
.xw-migration-visual {
  position: relative;
  min-height: 480px;
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(19,24,47,.96), rgba(9,12,25,.98));
  border: 1px solid var(--xw-border);
  border-radius: var(--xw-radius-lg);
  box-shadow: var(--xw-shadow);
}
.xw-migration-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 70% 24%, rgba(139,92,246,.15), transparent 20rem);
}
.xw-migration-window { position: relative; z-index: 2; }
.xw-window-top { display: flex; align-items: center; justify-content: space-between; color: var(--xw-muted); font-size: 11px; }
.xw-window-dots { display: flex; gap: 6px; }
.xw-window-dots i { width: 8px; height: 8px; background: #334155; border-radius: 50%; }
.xw-window-dots i:nth-child(1) { background: #fb7185; }
.xw-window-dots i:nth-child(2) { background: #fbbf24; }
.xw-window-dots i:nth-child(3) { background: #34d399; }
.xw-migration-route { display: grid; margin-top: 65px; align-items: center; grid-template-columns: 1fr 90px 1fr; gap: 12px; }
.xw-route-node {
  display: grid;
  min-height: 142px;
  padding: 18px;
  place-items: center;
  text-align: center;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--xw-border);
  border-radius: 18px;
}
.xw-route-node svg { width: 33px; color: #c4b5fd; }
.xw-route-node strong { display: block; margin-top: 8px; font-size: 13px; }
.xw-route-node span { display: block; color: var(--xw-muted); font-size: 10px; }
.xw-route-arrow { position: relative; height: 2px; background: linear-gradient(90deg, var(--xw-primary), var(--xw-cyan)); }
.xw-route-arrow::after { position: absolute; top: 50%; right: -2px; width: 9px; height: 9px; content: ""; border-top: 2px solid var(--xw-cyan); border-right: 2px solid var(--xw-cyan); transform: translateY(-50%) rotate(45deg); }
.xw-transfer-status { margin-top: 34px; padding: 17px; background: rgba(52,211,153,.06); border: 1px solid rgba(52,211,153,.13); border-radius: 15px; }
.xw-transfer-status__top { display: flex; align-items: center; justify-content: space-between; color: #a7f3d0; font-size: 11px; font-weight: 800; }
.xw-progress { height: 6px; margin-top: 10px; overflow: hidden; background: rgba(255,255,255,.07); border-radius: 999px; }
.xw-progress i { display: block; width: 88%; height: 100%; background: linear-gradient(90deg, var(--xw-green), var(--xw-cyan)); border-radius: inherit; }

.xw-faq-grid { display: grid; max-width: 860px; margin: 0 auto; gap: 11px; }
.xw-faq {
  background: rgba(255,255,255,.028);
  border: 1px solid var(--xw-border);
  border-radius: 17px;
  transition: border-color .2s ease, background .2s ease;
}
.xw-faq[open] { background: rgba(139,92,246,.055); border-color: rgba(139,92,246,.27); }
.xw-faq summary {
  position: relative;
  padding: 20px 54px 20px 21px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}
.xw-faq summary::-webkit-details-marker { display: none; }
.xw-faq summary::after {
  position: absolute;
  top: 50%;
  right: 21px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  content: "+";
  color: #c4b5fd;
  background: rgba(139,92,246,.1);
  border-radius: 8px;
  transform: translateY(-50%);
}
.xw-faq[open] summary::after { content: "–"; }
.xw-faq p { margin: 0; padding: 0 21px 21px; color: var(--xw-muted); font-size: 13px; }

.xw-cta {
  position: relative;
  padding: clamp(34px, 7vw, 70px);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(76,29,149,.9), rgba(67,56,202,.78) 48%, rgba(8,145,178,.62));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--xw-radius-lg);
  box-shadow: var(--xw-shadow);
}
.xw-cta::before {
  position: absolute;
  width: 380px;
  height: 380px;
  right: -100px;
  bottom: -250px;
  content: "";
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  filter: blur(10px);
}
.xw-cta__inner { position: relative; z-index: 2; display: grid; align-items: center; grid-template-columns: 1fr auto; gap: 32px; }
.xw-cta h2 { max-width: 720px; margin: 0; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.04; letter-spacing: -.055em; }
.xw-cta p { max-width: 630px; margin: 15px 0 0; color: #ddd6fe; }
.xw-cta__actions { display: flex; flex-direction: column; gap: 10px; }

.xw-footer { position: relative; margin-top: 100px; padding: 68px 0 26px; color: #dbe3ef; background: rgba(4,6,14,.85); border-top: 1px solid var(--xw-border); }
.xw-footer__grid { display: grid; grid-template-columns: 1.35fr repeat(3,.7fr); gap: 50px; }
.xw-footer__brand img { width: 178px; }
.xw-footer__brand p { max-width: 390px; margin: 18px 0 0; color: var(--xw-muted); font-size: 13px; }
.xw-footer h3 { margin: 6px 0 16px; color: #fff; font-size: 13px; }
.xw-footer__links { display: grid; margin: 0; padding: 0; gap: 9px; list-style: none; }
.xw-footer__links a { color: var(--xw-muted); font-size: 12px; text-decoration: none; }
.xw-footer__links a:hover { color: #fff; }
.xw-footer__bottom { display: flex; margin-top: 54px; padding-top: 22px; align-items: center; justify-content: space-between; gap: 20px; color: #78849a; border-top: 1px solid var(--xw-border); font-size: 11px; }
.xw-footer__legal { display: flex; flex-wrap: wrap; gap: 15px; }
.xw-footer__legal a { text-decoration: none; }
.xw-footer__legal a:hover { color: #cbd5e1; }

.xw-toast-region { position: fixed; z-index: 1000; right: 18px; bottom: 18px; display: grid; width: min(360px, calc(100% - 36px)); gap: 9px; }
.xw-toast { padding: 14px 15px; color: #fff; background: rgba(15,23,42,.96); border: 1px solid rgba(139,92,246,.35); border-radius: 13px; box-shadow: 0 18px 50px rgba(0,0,0,.35); font-size: 12px; animation: xw-toast-in .25s ease both; }
.xw-toast--error { border-color: rgba(251,113,133,.45); }
@keyframes xw-toast-in { from { opacity: 0; transform: translateY(10px); } }

.xw-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.xw-reveal.is-visible { opacity: 1; transform: none; }

.xw-legacy {
  min-height: 60vh;
  padding: 38px 0 70px;
  color: #1f2937;
  background: #f5f7fb;
}
.xw-legacy > .container-fluid:first-child { margin-top: 0; }
.xw-legacy .vitrin-baslik h1,
.xw-legacy .vitrin-baslik h3 { color: #111827; }
.xw-legacy .buton1,
.xw-legacy .buton2 {
  color: #fff !important;
  background: linear-gradient(135deg, var(--xw-primary), var(--xw-primary-2)) !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}
.xw-legacy input,
.xw-legacy select,
.xw-legacy textarea { border-radius: 10px !important; }

.xw-mobile-cta { display: none; }

.xw-contact { position: relative; min-height: 76vh; padding: 112px 0; overflow: hidden; background: radial-gradient(circle at 8% 20%, rgba(139,92,246,.16), transparent 30%), radial-gradient(circle at 92% 75%, rgba(34,211,238,.1), transparent 28%); }
.xw-contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(46px,8vw,104px); align-items: center; }
.xw-contact__copy h1 { max-width: 620px; margin: 20px 0 24px; font-size: clamp(3rem,6vw,5.8rem); line-height: .96; letter-spacing: -.058em; }
.xw-contact__copy > p { max-width: 580px; color: var(--xw-muted); font-size: 1.05rem; line-height: 1.78; }
.xw-contact__cards { display: grid; gap: 10px; margin-top: 34px; }
.xw-contact__cards > * { display: flex; justify-content: space-between; gap: 20px; padding: 15px 17px; color: inherit; border: 1px solid var(--xw-border); border-radius: 14px; background: rgba(255,255,255,.025); text-decoration: none; }
.xw-contact__cards span { color: var(--xw-muted); font-size: 12px; }
.xw-contact__cards strong { color: var(--xw-text); font-size: 12px; text-align: right; }
.xw-contact__panel { padding: clamp(26px,4vw,44px); border: 1px solid rgba(148,163,184,.16); border-radius: 26px; background: rgba(13,16,32,.86); box-shadow: var(--xw-shadow); backdrop-filter: blur(18px); }
.xw-contact__panel h2 { margin: 0 0 8px; font-size: clamp(1.6rem,3vw,2.25rem); letter-spacing: -.035em; }
.xw-contact__panel > p { margin: 0 0 26px; color: var(--xw-muted); font-size: 13px; line-height: 1.65; }
.xw-contact-form { display: grid; gap: 16px; }
.xw-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.xw-field { display: grid; gap: 8px; }
.xw-field label { color: #cbd5e1; font-size: 12px; font-weight: 760; }
.xw-field label span { color: var(--xw-muted); font-weight: 500; }
.xw-field input,
.xw-field textarea { width: 100%; padding: 0 14px; color: var(--xw-text); border: 1px solid rgba(148,163,184,.2); border-radius: 12px; outline: 0; background: rgba(255,255,255,.045); font: inherit; transition: border-color .2s, box-shadow .2s; }
.xw-field input { min-height: 50px; }
.xw-field textarea { min-height: 142px; padding-top: 13px; resize: vertical; }
.xw-field input:focus,
.xw-field textarea:focus { border-color: #818cf8; box-shadow: 0 0 0 4px rgba(99,102,241,.13); }
.xw-contact-form .xw-button { width: 100%; border: 0; }
.xw-contact-form small { color: #64748b; font-size: 10px; text-align: center; }
.xw-form-alert { margin-bottom: 18px; padding: 12px 14px; border-radius: 12px; font-size: 13px; line-height: 1.55; }
.xw-form-alert--error { color: #fecdd3; border: 1px solid rgba(251,113,133,.28); background: rgba(190,24,93,.12); }
.xw-form-alert--success { color: #a7f3d0; border: 1px solid rgba(52,211,153,.26); background: rgba(5,150,105,.12); }
.xw-honeypot { position: fixed !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.xw-error-page {
  position: relative;
  display: grid;
  min-height: 68vh;
  padding: 120px 0;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(99,102,241,.2), transparent 35%),
    radial-gradient(circle at 15% 85%, rgba(34,211,238,.12), transparent 32%);
}
.xw-error-page__inner { max-width: 860px; text-align: center; }
.xw-error-page h1 { margin: 20px auto; max-width: 820px; font-size: clamp(2.8rem, 7vw, 5.8rem); line-height: .98; letter-spacing: -.055em; }
.xw-error-page p { max-width: 640px; margin: 0 auto 32px; color: var(--xw-muted); font-size: 1.06rem; line-height: 1.75; }
.xw-error-page .xw-hero__actions { justify-content: center; }

@media (max-width: 1040px) {
  .xw-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .xw-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    background: rgba(9,12,25,.98);
    border: 1px solid var(--xw-border);
    border-radius: 16px;
    box-shadow: var(--xw-shadow);
  }
  .xw-nav.is-open { display: block; }
  .xw-nav__list { align-items: stretch; flex-direction: column; }
  .xw-nav__link { width: 100%; padding: 12px 13px; }
  .xw-nav__login { display: block; }
  .xw-nav__login .xw-nav__link { color: #fff; background: linear-gradient(135deg, rgba(139,92,246,.28), rgba(99,102,241,.18)); border: 1px solid rgba(139,92,246,.24); }
  .xw-header__actions { justify-self: end; }
  .xw-menu-toggle { display: grid; }
  .xw-header__actions .xw-button--ghost { display: none; }
  .xw-hero__grid { grid-template-columns: minmax(0,.84fr) minmax(420px,1.16fr); gap: 34px; }
  .xw-hero h1 { font-size: clamp(3.1rem,6.7vw,4.5rem); }
  .xw-pricing-grid { grid-template-columns: repeat(2,1fr); }
  .xw-benefit-grid { grid-template-columns: repeat(2,1fr); }
  .xw-panel-preview { grid-template-columns: 178px minmax(0,1fr); }
  .xw-panel-sidebar { padding-inline: 12px; }
  .xw-panel-tool-grid { grid-template-columns: repeat(2,1fr); }
  .xw-footer__grid { grid-template-columns: 1.3fr repeat(2,.7fr); }
  .xw-footer__grid > div:last-child { display: none; }
}

@media (max-width: 780px) {
  .xw-shell { width: min(calc(100% - 28px), var(--xw-shell)); }
  .xw-section { padding: 78px 0; }
  .xw-announcement__inner { min-height: 40px; font-size: 11px; }
  .xw-announcement__badge { display: none; }
  .xw-header__inner { min-height: 68px; gap: 10px; }
  .xw-brand,
  .xw-brand img { width: 145px; }
  .xw-header__actions { gap: 7px; }
  .xw-header__actions > .xw-button { display: none; }
  .xw-hero { min-height: 0; padding: 72px 0 56px; }
  .xw-hero__grid { grid-template-columns: 1fr; }
  .xw-hero h1 { font-size: clamp(3.05rem, 14vw, 5rem); }
  .xw-hero__lead { font-size: 1.02rem; }
  .xw-server-card { max-width: 540px; margin-inline: auto; transform: none; }
  .xw-domain-panel--hero { width: 100%; max-width: 650px; margin-inline: auto; }
  .xw-trust-bar__inner { grid-template-columns: repeat(2,1fr); }
  .xw-trust-item:nth-child(2)::after { display: none; }
  .xw-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--xw-border); }
  .xw-domain-panel__top { grid-template-columns: 1fr; }
  .xw-pricing-grid,
  .xw-benefit-grid { grid-template-columns: 1fr; }
  .xw-journey-grid { grid-template-columns: 1fr; }
  .xw-journey-grid::before { display: none; }
  .xw-journey-card { min-height: 0; }
  .xw-price-card__desc { min-height: 0; }
  .xw-panel-intro { grid-template-columns: 1fr; }
  .xw-panel-intro__actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .xw-panel-preview { display: block; min-height: 0; }
  .xw-panel-sidebar { display: none; }
  .xw-panel-main { padding: 20px; }
  .xw-panel-metrics { grid-template-columns: repeat(2,1fr); }
  .xw-split { grid-template-columns: 1fr; }
  .xw-section-copy { max-width: none; }
  .xw-migration-visual { min-height: 420px; }
  .xw-cta__inner { grid-template-columns: 1fr; }
  .xw-cta__actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .xw-footer__grid { grid-template-columns: 1fr 1fr; }
  .xw-footer__brand { grid-column: 1 / -1; }
  .xw-footer__bottom { align-items: flex-start; flex-direction: column; }
  .xw-contact { padding: 78px 0; }
  .xw-contact__grid { grid-template-columns: 1fr; }
  .xw-contact__copy h1 { font-size: clamp(3rem,14vw,5rem); }
  .xw-mobile-cta {
    position: fixed;
    z-index: 45;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    min-height: 44px;
    padding: 0 17px;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--xw-primary), var(--xw-primary-2));
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(0,0,0,.38);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
  }
}

@media (max-width: 520px) {
  .xw-hero__actions { flex-direction: column; }
  .xw-hero__actions .xw-button { width: 100%; }
  .xw-hero__proof { flex-direction: column; gap: 11px; }
  .xw-server-card__metrics { grid-template-columns: 1fr; }
  .xw-trust-bar__inner { grid-template-columns: 1fr; }
  .xw-trust-item { padding: 15px 18px; border-bottom: 1px solid var(--xw-border); }
  .xw-trust-item:last-child { border-bottom: 0; }
  .xw-trust-item::after { display: none; }
  .xw-domain-search { grid-template-columns: 1fr; }
  .xw-domain-search button { width: 100%; }
  .xw-domain-result { grid-template-columns: 1fr; }
  .xw-domain-result__price { text-align: left; }
  .xw-domain-result .xw-button { width: 100%; }
  .xw-panel-intro__actions { flex-direction: column; }
  .xw-panel-intro__actions .xw-button { width: 100%; }
  .xw-panel-main { padding: 14px; }
  .xw-panel-topbar > div { align-items: flex-start; flex-direction: column; gap: 5px; }
  .xw-panel-service { align-items: flex-start; flex-direction: column; }
  .xw-panel-metrics,
  .xw-panel-tool-grid { grid-template-columns: 1fr; }
  .xw-panel-tools__heading { align-items: flex-start; flex-direction: column; gap: 5px; }
  .xw-migration-route { grid-template-columns: 1fr; }
  .xw-route-arrow { width: 2px; height: 50px; margin: 0 auto; background: linear-gradient(var(--xw-primary),var(--xw-cyan)); }
  .xw-route-arrow::after { top: auto; right: 50%; bottom: -1px; transform: translateX(50%) rotate(135deg); }
  .xw-cta__actions { flex-direction: column; }
  .xw-cta__actions .xw-button { width: 100%; }
  .xw-footer__grid { grid-template-columns: 1fr; }
  .xw-footer__brand { grid-column: auto; }
  .xw-field-row { grid-template-columns: 1fr; }
  .xw-contact__cards > * { align-items: flex-start; flex-direction: column; }
  .xw-contact__cards strong { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .xw-reveal { opacity: 1; transform: none; }
}

/* Ferah tema: ana sayfa ve kurumsal yüzeyler için düşük doygunluklu,
   uzun süreli kullanımda gözü yormayan açık renk sistemi. */
.xw-section--soft { background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(237,245,247,.58)); border-block-color: rgba(43,82,102,.09); }
.xw-kicker { color: #3f6c88; }
.xw-gradient-text { background-image: linear-gradient(115deg, #173b55 4%, #5574b5 46%, #2f8c96 88%); }
.xw-announcement { color: #25485f; background: linear-gradient(90deg, #e4eefb, #e8f4f4, #e5f4ee); border-bottom-color: rgba(43,82,102,.1); }
.xw-announcement__badge { color: #164a3b; background: #c9eedf; }
.xw-header { color: var(--xw-text); background: rgba(250,253,253,.82); border-bottom-color: rgba(43,82,102,.07); }
.xw-header.is-scrolled { background: rgba(250,253,253,.96); box-shadow: 0 12px 34px rgba(39,72,89,.09); }
.xw-nav__link { color: #38566b; }
.xw-nav__link:hover,
.xw-nav__link:focus-visible { color: #173b55; background: rgba(47,127,140,.08); }
.xw-cart-link { color: #284d64; background: #fff; box-shadow: 0 7px 20px rgba(39,72,89,.08); }
.xw-cart-count { border-color: #f6fafb; }
.xw-menu-toggle { color: #284d64; background: #fff; }
.xw-button { box-shadow: 0 12px 28px rgba(54,96,150,.19); }
.xw-button:hover,
.xw-button:focus-visible { box-shadow: 0 17px 34px rgba(54,96,150,.25); }
.xw-button--ghost { color: #284d64; background: rgba(255,255,255,.78); }
.xw-button--light { color: #25485f; background: #fff; box-shadow: 0 14px 32px rgba(39,72,89,.12); }
.xw-hero::before { background-image: linear-gradient(rgba(43,82,102,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(43,82,102,.045) 1px, transparent 1px); }
.xw-hero__orb { background: radial-gradient(circle, rgba(117,150,210,.2), rgba(97,186,178,.1) 45%, transparent 68%); }
.xw-hero__badge { color: #3d6380; background: rgba(255,255,255,.82); border-color: rgba(70,104,177,.2); box-shadow: 0 8px 22px rgba(39,72,89,.07); }
.xw-hero-offer { background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(230,243,243,.85)); border-color: rgba(47,127,140,.2); }
.xw-hero-offer > span { color: #526da3; }
.xw-hero-offer strong { color: #173b55; }
.xw-hero-offer strong small { color: #607486; }
.xw-hero-offer em { color: #237556; }
.xw-hero__proof { color: #38566b; }
.xw-server-card { background: linear-gradient(145deg, rgba(70,104,177,.42), rgba(47,148,162,.2), rgba(255,255,255,.8)); }
.xw-server-card::before { background: rgba(103,145,190,.18); }
.xw-server-card__inner { background: linear-gradient(160deg, rgba(255,255,255,.98), rgba(239,247,248,.98)); }
.xw-server-card__name,
.xw-mini-metric strong { color: #173b55; }
.xw-server-card__status { color: #237556; }
.xw-server-row { color: #38566b; background: rgba(255,255,255,.8); border-color: rgba(43,82,102,.12); }
.xw-mini-metric { background: rgba(223,237,246,.62); border-color: rgba(70,104,177,.13); }
.xw-trust-bar__inner { background: rgba(255,255,255,.78); box-shadow: 0 14px 38px rgba(39,72,89,.07); }
.xw-trust-icon { color: #4668b1; background: #e8eef9; }
.xw-domain-panel,
.xw-domain-panel--hero { background: radial-gradient(circle at 90% 5%, rgba(97,186,178,.16), transparent 20rem), linear-gradient(145deg, rgba(255,255,255,.98), rgba(237,245,247,.98)); border-color: rgba(70,104,177,.18); box-shadow: 0 30px 72px rgba(39,72,89,.14); }
.xw-domain-panel--hero::before { background: rgba(113,150,201,.16); }
.xw-domain-search { border: 1px solid rgba(43,82,102,.14); box-shadow: 0 16px 38px rgba(39,72,89,.12); }
.xw-domain-search:focus-within { box-shadow: 0 18px 42px rgba(39,72,89,.13), 0 0 0 4px rgba(47,127,140,.12); }
.xw-domain-auto-help,
.xw-domain-assurance { color: #6a7d8d; }
.xw-tld-chip { color: #38566b; background: rgba(255,255,255,.75); }
.xw-tld-chip strong { color: #247884; }
.xw-domain-result { background: rgba(255,255,255,.82); }
.xw-domain-result__price strong { color: #173b55; }
.xw-domain-message { color: #31566f; background: rgba(219,232,247,.65); border-color: rgba(70,104,177,.18); }
.xw-journey-card { background: linear-gradient(165deg, #fff, #f1f7f8); box-shadow: 0 14px 36px rgba(39,72,89,.07); }
.xw-journey-card:hover { background: linear-gradient(165deg, #fff, #eaf4f5); border-color: rgba(47,127,140,.28); }
.xw-journey-card__number { border-color: #f6fafb; }
.xw-journey-card__label,
.xw-journey-card a { color: #4668a0; }
.xw-journey-card a:hover { color: #245f6d; }
.xw-pricing-meta { color: #237556; background: #e2f4ec; border-color: #c5e7d9; }
.xw-price-card { background: linear-gradient(165deg, #fff, #f2f7f8); box-shadow: 0 14px 38px rgba(39,72,89,.07); }
.xw-price-card:hover { border-color: rgba(70,104,177,.3); box-shadow: 0 24px 52px rgba(39,72,89,.13); }
.xw-price-card--popular { background: linear-gradient(165deg, #eef3ff, #eaf6f4); border-color: rgba(70,104,177,.42); box-shadow: 0 23px 55px rgba(70,104,177,.14); }
.xw-price-card__eyebrow,
.xw-price__currency { color: #4668a0; }
.xw-price-card__billing { color: #38566b; background: rgba(255,255,255,.72); }
.xw-price-card__billing span { color: #6a7d8d; }
.xw-price-card__billing strong { color: #173b55; }
.xw-price-card__billing small { color: #237556; border-top-color: rgba(43,82,102,.1); }
.xw-feature-list li { color: #38566b; }
.xw-benefit-card { background: rgba(255,255,255,.74); box-shadow: 0 13px 34px rgba(39,72,89,.055); }
.xw-benefit-card:hover { background: #fff; }
.xw-benefit-card__icon { color: #4668b1; background: linear-gradient(145deg, #e9effa, #e5f3f1); border-color: rgba(70,104,177,.16); }
.xw-section--panel { background: radial-gradient(circle at 12% 18%, rgba(117,150,210,.16), transparent 24rem), radial-gradient(circle at 90% 84%, rgba(97,186,178,.12), transparent 24rem), rgba(255,255,255,.45); border-block-color: rgba(43,82,102,.08); }
.xw-migration-visual { background: linear-gradient(160deg, #fff, #edf5f7); }
.xw-route-node { background: rgba(255,255,255,.84); }
.xw-route-node svg { color: #4668b1; }
.xw-transfer-status { background: #e5f5ee; border-color: #c7e8dc; }
.xw-transfer-status__top { color: #237556; }
.xw-progress { background: rgba(43,82,102,.1); }
.xw-faq { background: rgba(255,255,255,.78); box-shadow: 0 10px 28px rgba(39,72,89,.045); }
.xw-faq[open] { background: #fff; border-color: rgba(70,104,177,.24); }
.xw-faq summary::after { color: #4668b1; background: #e8eef9; }
.xw-cta { background: linear-gradient(135deg, #4668a7, #4d7e9d 50%, #398b8d); border-color: rgba(255,255,255,.28); box-shadow: 0 28px 70px rgba(52,93,119,.22); }
.xw-cta p { color: #eaf5f5; }
.xw-footer { color: #38566b; background: #edf5f7; border-top-color: rgba(43,82,102,.12); }
.xw-footer h3 { color: #173b55; }
.xw-footer__links a:hover { color: #245f6d; }
.xw-footer__bottom { color: #708290; }
.xw-footer__legal a:hover { color: #38566b; }
.xw-contact { background: radial-gradient(circle at 8% 20%, rgba(117,150,210,.17), transparent 30%), radial-gradient(circle at 92% 75%, rgba(97,186,178,.13), transparent 28%); }
.xw-contact__cards > * { background: rgba(255,255,255,.72); }
.xw-contact__panel { background: rgba(255,255,255,.9); border-color: rgba(43,82,102,.14); }
.xw-field label { color: #38566b; }
.xw-field input,
.xw-field textarea { color: #173b55; background: #fff; border-color: rgba(43,82,102,.18); }
.xw-error-page { background: radial-gradient(circle at 75% 30%, rgba(117,150,210,.2), transparent 35%), radial-gradient(circle at 15% 85%, rgba(97,186,178,.14), transparent 32%); }

@media (max-width: 1040px) {
  .xw-nav { background: rgba(250,253,253,.99); }
  .xw-nav__login .xw-nav__link { color: #fff; background: linear-gradient(135deg, #4668b1, #2f7f8c); border-color: transparent; }
}

/* Xworen 2026 professional refresh
   Tek ve tutarlı açık tema; hızlı algılanan, güven veren satış akışı. */
:root {
  --xw-bg: #f7f9fc;
  --xw-bg-soft: #eef3f9;
  --xw-surface: rgba(255, 255, 255, .92);
  --xw-surface-strong: #fff;
  --xw-border: rgba(28, 52, 79, .12);
  --xw-border-strong: rgba(78, 93, 186, .3);
  --xw-text: #12263f;
  --xw-muted: #5f7187;
  --xw-primary: #5658c9;
  --xw-primary-2: #168294;
  --xw-cyan: #168294;
  --xw-green: #23845f;
  --xw-shadow: 0 24px 70px rgba(39, 63, 92, .13);
  --xw-shadow-soft: 0 12px 38px rgba(39, 63, 92, .08);
  --xw-radius-sm: 13px;
  --xw-radius: 22px;
  --xw-radius-lg: 30px;
  --xw-shell: 1200px;
}

body.xw-site {
  color: var(--xw-text);
  background:
    radial-gradient(circle at 8% 0, rgba(95, 117, 215, .1), transparent 30rem),
    radial-gradient(circle at 96% 14%, rgba(42, 160, 168, .09), transparent 31rem),
    var(--xw-bg);
  font-size: 16px;
  line-height: 1.65;
}
body.xw-site h1,
body.xw-site h2,
body.xw-site h3 { color: var(--xw-text); text-wrap: balance; }
body.xw-site p { text-wrap: pretty; }
body.xw-site :focus-visible { outline: 3px solid rgba(86, 88, 201, .28); outline-offset: 3px; }
body.xw-site ::selection { color: #fff; background: #5658c9; }

.xw-shell { width: min(calc(100% - 48px), var(--xw-shell)); }
.xw-section { padding: 100px 0; }
.xw-section--compact { padding: 68px 0 88px; }
.xw-section--soft {
  background: linear-gradient(180deg, rgba(239, 244, 250, .78), rgba(247, 249, 252, .32));
  border-block-color: rgba(28, 52, 79, .07);
}
.xw-section-heading { max-width: 760px; margin-bottom: 52px; }
.xw-section-heading h2,
.xw-section-copy h2 { font-size: clamp(2.2rem, 4.5vw, 3.65rem); font-weight: 850; letter-spacing: -.052em; }
.xw-section-heading p,
.xw-section-copy > p { color: var(--xw-muted); line-height: 1.75; }
.xw-kicker { margin-bottom: 13px; color: #4f5eb2; letter-spacing: .12em; }
.xw-kicker::before { width: 28px; background: linear-gradient(90deg, #7079da, #32a2aa); }
.xw-gradient-text {
  background-image: linear-gradient(110deg, #4f55c3 8%, #466fbe 48%, #168294 92%);
  background-size: 100%;
}

.xw-announcement {
  color: #334e69;
  background: linear-gradient(90deg, #edf0ff, #eef8f8 58%, #edf7f3);
  border-bottom-color: rgba(28, 52, 79, .08);
}
.xw-announcement__inner { min-height: 38px; font-weight: 650; }
.xw-announcement__badge { color: #3643a0; background: #fff; border: 1px solid rgba(86, 88, 201, .16); box-shadow: 0 4px 12px rgba(52, 66, 109, .06); }

.xw-header {
  background: rgba(255, 255, 255, .88);
  border-bottom-color: rgba(28, 52, 79, .08);
  backdrop-filter: blur(20px) saturate(150%);
}
.xw-header.is-scrolled { background: rgba(255, 255, 255, .97); box-shadow: 0 10px 34px rgba(31, 54, 84, .08); }
.xw-header__inner { min-height: 78px; gap: 28px; }
.xw-brand,
.xw-brand img { width: 168px; }
.xw-nav__list { gap: 2px; }
.xw-nav__link { padding: 10px 12px; color: #40556e; font-size: 13px; }
.xw-nav__link:hover,
.xw-nav__link:focus-visible { color: #353aa2; background: #f0f2ff; }
.xw-header__actions { gap: 8px; }
.xw-cart-link { color: #324b67; background: #fff; border-color: rgba(28, 52, 79, .11); box-shadow: 0 7px 20px rgba(31, 54, 84, .07); }
.xw-cart-link:hover { color: var(--xw-primary); border-color: rgba(86, 88, 201, .28); }
.xw-menu-toggle { color: #324b67; background: #fff; }

.xw-button {
  min-height: 48px;
  padding-inline: 21px;
  background: linear-gradient(135deg, #5658c9, #3473b4 56%, #168294);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(69, 82, 183, .22);
  font-size: 13px;
  letter-spacing: -.005em;
}
.xw-button:hover,
.xw-button:focus-visible { transform: translateY(-2px); box-shadow: 0 17px 34px rgba(69, 82, 183, .28); }
.xw-button--ghost { color: #334e69; background: #fff; border-color: rgba(28, 52, 79, .13); box-shadow: 0 7px 20px rgba(31, 54, 84, .06); }
.xw-button--ghost:hover { color: #3f48b1; background: #f7f8ff; border-color: rgba(86, 88, 201, .28); }
.xw-button--light { color: #263b55; background: #fff; }

.xw-hero {
  min-height: 700px;
  padding: 82px 0 76px;
  background:
    linear-gradient(110deg, rgba(247, 249, 252, .9), rgba(247, 249, 252, .55)),
    radial-gradient(circle at 75% 25%, rgba(101, 109, 212, .09), transparent 26rem);
}
.xw-hero::before {
  background-image:
    linear-gradient(rgba(31, 54, 84, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 54, 84, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 92%);
}
.xw-hero__orb { width: 620px; height: 620px; right: -220px; background: radial-gradient(circle, rgba(90, 100, 205, .14), rgba(37, 151, 159, .07) 46%, transparent 70%); }
.xw-hero__grid { grid-template-columns: minmax(0, .96fr) minmax(430px, 1.04fr); gap: clamp(48px, 6vw, 82px); }
.xw-hero__badge { margin-bottom: 22px; padding: 8px 13px; color: #4653ad; background: #fff; border-color: rgba(86, 88, 201, .17); box-shadow: 0 8px 24px rgba(31, 54, 84, .07); }
.xw-live-dot { background: #2e9a70; box-shadow: 0 0 0 5px rgba(46, 154, 112, .12); }
.xw-hero h1 { max-width: 700px; font-size: clamp(3.15rem, 5.6vw, 5rem); font-weight: 880; line-height: .99; letter-spacing: -.066em; }
.xw-hero__lead { max-width: 650px; margin-top: 25px; color: #596d83; font-size: clamp(1.04rem, 1.75vw, 1.2rem); line-height: 1.75; }
.xw-hero-offer { margin-top: 27px; padding: 13px 18px; background: linear-gradient(135deg, #fff, #edf7f7); border-color: rgba(22, 130, 148, .17); box-shadow: 0 10px 30px rgba(31, 54, 84, .07); }
.xw-hero-offer > span { color: #505ab0; }
.xw-hero-offer strong { color: var(--xw-text); }
.xw-hero-offer em { color: #237657; }
.xw-hero__actions { margin-top: 30px; }
.xw-hero__proof { margin-top: 25px; color: #445b74; gap: 14px 22px; }
.xw-check { color: #fff; background: linear-gradient(145deg, #2f966e, #47ae84); box-shadow: 0 4px 12px rgba(35, 132, 95, .16); }

.xw-domain-panel,
.xw-domain-panel--hero {
  background:
    radial-gradient(circle at 96% 2%, rgba(62, 162, 172, .12), transparent 16rem),
    linear-gradient(150deg, #fff, #f8fbfd);
  border: 1px solid rgba(45, 68, 96, .12);
  box-shadow: 0 34px 85px rgba(39, 63, 92, .16), 0 0 0 7px rgba(255, 255, 255, .45);
}
.xw-domain-panel--hero { padding: clamp(28px, 3.4vw, 40px); }
.xw-domain-panel--hero::before { background: rgba(91, 96, 201, .1); }
.xw-domain-panel--hero h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1.06; }
.xw-domain-panel--hero .xw-domain-panel__top p { max-width: 480px; color: var(--xw-muted); font-size: 13px; }
.xw-domain-search { padding: 6px; background: #fff; border: 1px solid rgba(28, 52, 79, .13); box-shadow: 0 13px 34px rgba(39, 63, 92, .1); }
.xw-domain-search:focus-within { border-color: rgba(86, 88, 201, .4); box-shadow: 0 16px 40px rgba(39, 63, 92, .12), 0 0 0 4px rgba(86, 88, 201, .11); }
.xw-domain-search input { color: #172b45; font-size: 15px; }
.xw-domain-search input::placeholder { color: #9aa8b8; }
.xw-domain-auto-help { color: #76879a; }
.xw-tld-list { margin-top: 19px; }
.xw-tld-chip { color: #3d536c; background: #f7f9fc; border-color: rgba(28, 52, 79, .1); transition: color .2s, border-color .2s, background .2s, transform .2s; }
.xw-tld-chip:hover { color: #353aa2; background: #f0f2ff; border-color: rgba(86, 88, 201, .25); transform: translateY(-1px); }
.xw-tld-chip strong { color: #167b8c; }
.xw-domain-result { background: #fff; border-color: rgba(28, 52, 79, .11); box-shadow: 0 8px 24px rgba(31, 54, 84, .055); }
.xw-domain-result__name,
.xw-domain-result__price strong { color: var(--xw-text); }
.xw-domain-assurance { margin-top: 17px; color: #708197; }
.xw-domain-panel__signals { display: grid; margin-top: 20px; padding-top: 17px; grid-template-columns: repeat(3, 1fr); gap: 10px; border-top: 1px solid rgba(28, 52, 79, .09); }
.xw-domain-panel__signals span { display: grid; color: #718297; font-size: 9px; line-height: 1.35; }
.xw-domain-panel__signals strong { color: #334e69; font-size: 10px; }

.xw-trust-bar { padding: 0 0 28px; }
.xw-trust-bar__inner { min-height: 92px; background: rgba(255, 255, 255, .92); border-color: rgba(28, 52, 79, .1); box-shadow: 0 14px 42px rgba(31, 54, 84, .07); }
.xw-trust-item { padding: 19px 22px; }
.xw-trust-icon { color: #5159bd; background: linear-gradient(145deg, #eef0ff, #e9f6f5); }
.xw-trust-item strong { color: #263d58; }
.xw-trust-item span { color: #718197; }

.xw-section--journey { padding-top: 86px; }
.xw-journey-card { min-height: 260px; background: #fff; border-color: rgba(28, 52, 79, .1); box-shadow: var(--xw-shadow-soft); }
.xw-journey-card:hover { background: #fff; border-color: rgba(86, 88, 201, .27); box-shadow: 0 20px 48px rgba(39, 63, 92, .12); }
.xw-journey-card__number { background: linear-gradient(145deg, #5a5dcc, #2a889a); border-color: #f7f9fc; }
.xw-journey-card__label,
.xw-journey-card a { color: #4c58b5; }
.xw-journey-card p { color: var(--xw-muted); }

.xw-pricing-meta { color: #256d53; background: #e9f6f0; border-color: #cde8dc; }
.xw-pricing-grid { gap: 18px; }
.xw-price-card { padding: 29px 24px 24px; background: #fff; border-color: rgba(28, 52, 79, .1); box-shadow: var(--xw-shadow-soft); isolation: isolate; }
.xw-price-card:hover { border-color: rgba(86, 88, 201, .28); box-shadow: 0 24px 58px rgba(39, 63, 92, .14); }
.xw-price-card--popular { background: linear-gradient(165deg, #f4f3ff, #f3faf9); border: 1px solid rgba(86, 88, 201, .38); box-shadow: 0 22px 56px rgba(75, 78, 176, .14); }
.xw-price-card--popular::before { opacity: .13; }
.xw-price-badge { background: linear-gradient(135deg, #5658c9, #3973b5); }
.xw-price-card__eyebrow,
.xw-price__currency { color: #505ab4; }
.xw-price-card__desc { color: var(--xw-muted); }
.xw-price__amount { color: #142a44; }
.xw-price-card__billing { color: #40566f; background: #f7f9fc; border-color: rgba(28, 52, 79, .09); }
.xw-price-card__billing strong { color: #1e3652; }
.xw-feature-list li { color: #3c536c; }
.xw-pricing-note { color: #728297; }

.xw-benefit-grid { gap: 18px; }
.xw-benefit-card { min-height: 225px; background: #fff; border-color: rgba(28, 52, 79, .1); box-shadow: 0 10px 32px rgba(39, 63, 92, .06); }
.xw-benefit-card:hover { background: #fff; border-color: rgba(22, 130, 148, .25); box-shadow: 0 18px 44px rgba(39, 63, 92, .1); }
.xw-benefit-card__icon { color: #5159bd; background: linear-gradient(145deg, #eef0ff, #e8f6f4); border-color: rgba(86, 88, 201, .14); }
.xw-benefit-card p { color: var(--xw-muted); }

.xw-section--panel { background: linear-gradient(180deg, #f2f4ff, #eef7f7); border-block-color: rgba(28, 52, 79, .08); }
.xw-panel-intro p { color: var(--xw-muted); }
.xw-panel-preview { border-color: rgba(86, 88, 201, .2); box-shadow: 0 34px 82px rgba(35, 53, 84, .2); }
.xw-panel-sidebar { background: radial-gradient(circle at 20% 5%, rgba(95, 99, 205, .27), transparent 14rem), linear-gradient(175deg, #17243a, #0e1829 72%); }
.xw-panel-main { background: radial-gradient(circle at 90% 0, rgba(91, 96, 201, .08), transparent 25rem), #f5f7fb; }
.xw-panel-tools__heading > span { padding: 5px 8px; color: #4a51ad; background: #eef0ff; border-radius: 999px; }
.xw-panel-disclaimer { color: #63758a; }

.xw-migration-visual { background: linear-gradient(150deg, #fff, #f1f6fa); border-color: rgba(28, 52, 79, .1); box-shadow: var(--xw-shadow-soft); }
.xw-route-node { background: #fff; border-color: rgba(28, 52, 79, .1); box-shadow: 0 9px 25px rgba(31, 54, 84, .06); }
.xw-route-node svg { color: #5159bd; }
.xw-transfer-status { background: #ebf7f1; border-color: #d0eadf; }
.xw-transfer-status__top { color: #247257; }

.xw-faq { background: #fff; border-color: rgba(28, 52, 79, .1); box-shadow: 0 8px 28px rgba(39, 63, 92, .05); }
.xw-faq[open] { background: #fff; border-color: rgba(86, 88, 201, .24); box-shadow: 0 13px 36px rgba(39, 63, 92, .08); }
.xw-faq summary { color: #213952; }
.xw-faq summary::after { color: #4d56b8; background: #eef0ff; }

.xw-cta { background: linear-gradient(125deg, #343b92, #3f65a0 54%, #167d8c); border-color: rgba(255, 255, 255, .2); box-shadow: 0 28px 70px rgba(41, 59, 108, .24); }
.xw-cta h2 { color: #fff; }
.xw-cta p { color: #e6eef8; }
.xw-cta .xw-button--ghost { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .28); box-shadow: none; }
.xw-cta .xw-button--ghost:hover { background: rgba(255, 255, 255, .15); }

.xw-footer { margin-top: 0; padding-top: 72px; color: #455d76; background: #eef3f8; border-top-color: rgba(28, 52, 79, .1); }
.xw-footer h3 { color: #203750; }
.xw-footer__brand p,
.xw-footer__links a { color: #62758a; }
.xw-footer__links a:hover { color: #424bad; }
.xw-footer__bottom { color: #78889a; border-top-color: rgba(28, 52, 79, .1); }

.xw-contact { background: radial-gradient(circle at 8% 20%, rgba(101, 109, 212, .11), transparent 30%), radial-gradient(circle at 92% 75%, rgba(42, 160, 168, .1), transparent 28%); }
.xw-contact__cards > * { background: #fff; box-shadow: 0 8px 24px rgba(39, 63, 92, .05); }
.xw-contact__panel { background: #fff; border-color: rgba(28, 52, 79, .11); box-shadow: var(--xw-shadow); }
.xw-field label { color: #40566e; }
.xw-field input,
.xw-field textarea { color: #172b45; background: #f9fbfd; border-color: rgba(28, 52, 79, .14); }

@media (max-width: 1080px) {
  .xw-hero__grid { grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); gap: 34px; }
  .xw-hero h1 { font-size: clamp(3rem, 6vw, 4.35rem); }
  .xw-nav__link { padding-inline: 9px; }
}

@media (max-width: 1040px) {
  .xw-nav { background: rgba(255, 255, 255, .99); box-shadow: 0 18px 50px rgba(31, 54, 84, .14); }
  .xw-nav__login .xw-nav__link { color: #fff; background: linear-gradient(135deg, #5658c9, #168294); }
}

@media (max-width: 780px) {
  .xw-shell { width: min(calc(100% - 30px), var(--xw-shell)); }
  .xw-section { padding: 76px 0; }
  .xw-header__inner { min-height: 69px; }
  .xw-brand,
  .xw-brand img { width: 148px; }
  .xw-hero { padding: 66px 0 54px; }
  .xw-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .xw-hero h1 { max-width: 660px; font-size: clamp(3rem, 13vw, 4.7rem); }
  .xw-domain-panel--hero { max-width: 650px; }
  .xw-domain-panel__signals { grid-template-columns: 1fr; }
  .xw-pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .xw-benefit-grid { grid-template-columns: 1fr; }
  .xw-panel-preview { border-radius: 22px; }
}

@media (max-width: 520px) {
  .xw-announcement__inner { line-height: 1.35; }
  .xw-hero { padding-top: 54px; }
  .xw-hero h1 { font-size: clamp(2.75rem, 13vw, 3.65rem); }
  .xw-hero__lead { font-size: 1rem; }
  .xw-domain-panel,
  .xw-domain-panel--hero { padding: 24px 18px; border-radius: 22px; box-shadow: 0 22px 55px rgba(39, 63, 92, .14); }
  .xw-domain-search { padding: 5px; }
  .xw-domain-search button { margin-top: 4px; }
  .xw-tld-chip { padding: 7px 10px; }
  .xw-trust-bar__inner { border-radius: 17px; }
  .xw-price-card { padding-inline: 21px; }
  .xw-cta { padding-inline: 24px; }
}
