:root {
--bg: #0b0f14;
--card: rgba(255,255,255,0.07);
--blur: 12px;
--text: #e8eef6;
--muted: #a8b0bb;
--accent: #7dd3fc;
--accent-2: #22d3ee;
--stroke: rgba(255,255,255,0.12);
--shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
--radius-xl: 20px;
--radius-2xl: 28px;
--glass-grad: linear-gradient( to bottom right, rgba(255,255,255,.12), rgba(255,255,255,.04) );
}
[data-theme="light"] {
--bg: #f6f8fb;
--card: rgba(255,255,255,0.6);
--text: #0e1521;
--muted: #455066;
--stroke: rgba(17,25,40,.12);
--shadow: 0 8px 26px rgba(17,25,40,.08), inset 0 1px 0 rgba(255,255,255,.5);
--glass-grad: linear-gradient( to bottom right, rgba(255,255,255,.85), rgba(255,255,255,.6) );
}


* { box-sizing: border-box; }
html, body { height: 100%; }
body {
margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
background: radial-gradient(1200px 1200px at 80% -10%, rgba(34,211,238,.18), transparent 60%),
radial-gradient(900px 900px at -10% 20%, rgba(125,211,252,.18), transparent 50%),
var(--bg);
color: var(--text);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}


.container { width: min(1140px, 92vw); margin: 0 auto; }


/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(var(--blur));
  background: linear-gradient(to bottom, rgba(11, 15, 20, 0.06), rgba(11, 15, 20, 0));
  border-bottom: 1px solid rgba(17, 25, 40, 0.2);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo-badge { width: 65px; height: 65px; border-radius: 50%; background: var(--glass-grad); border: 1px solid var(--stroke); box-shadow: var(--shadow); display: grid; place-items: center; position: relative; overflow: hidden; }
.logo-badge:before { content: ""; position: absolute; inset: 0;  background: radial-gradient(60% 40% at 60% 10%, rgba(255, 255, 255, 0.29), #0000 70%); }
.logo svg { width: 22px; height: 22px; }
.brand { font-weight: 700; letter-spacing: .2px; font-size: 18px; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn { padding: 10px 14px; border-radius: 12px; border: 1px solid var(--stroke); background: var(--glass-grad); color: var(--text); text-decoration: none; font-weight: 600; box-shadow: var(--shadow); transition: transform .15s ease, border-color .2s ease; display: inline-flex; align-items: center; gap: 8px; }
.btn:hover { transform: translateY(-1px); border-color: rgba(125,211,252,.5); }
.btn.primary { background: linear-gradient(135deg, rgba(125,211,252,.35), rgba(34,211,238,.28)); border-color: rgba(125,211,252,.55); }


/* Hero */
.hero { position: relative; padding: 72px 0 42px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
.title { font-size: clamp(34px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.02em; margin: 8px 0 14px; }
.subtitle { color: var(--muted); font-size: clamp(15px, 1.6vw, 18px); line-height: 1.6; }
.hero-cta { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.super-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--accent);
  margin-bottom: 12px;
text-align:center;
  text-shadow: 0 0 10px rgba(125, 211, 252, 0.4);
}


.hero-card { position: relative; border-radius: var(--radius-2xl); padding: 22px; border: 1px solid var(--stroke); background: var(--card); backdrop-filter: blur(var(--blur)); box-shadow: var(--shadow); overflow: hidden; }
.hero-card .grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 999px; border: 1px solid var(--stroke); background: var(--glass-grad); font-weight: 600; color: var(--text); font-size: 12px; letter-spacing:.2px; }
.chip .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); }


/* Section titles */
.section { padding: 36px 0 10px; }
.section h2 { font-size: clamp(24px, 3vw, 32px); margin: 0 0 14px; letter-spacing: -0.02em; }
.section p.lead { color: var(--muted); margin: 0 0 14px; }


/* How it works */
.how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.card { border-radius: var(--radius-xl); border: 1px solid var(--stroke); background: var(--card); backdrop-filter: blur(var(--blur)); padding: 16px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.card h3 { margin: 6px 0 8px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.step { width: 28px; height: 28px; border-radius: 10px; display: grid; place-items: center; font-weight: 700; color: #0b0f14; background: linear-gradient(135deg, var(--accent), var(--accent-2)); border: 1px solid rgba(255,255,255,.3); box-shadow: 0 6px 16px rgba(34,211,238,.35); }


/* Deals */
.deals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.deal { position: relative; overflow: hidden; }
.deal header { display:flex; align-items:center; justify-content: space-between; gap:10px; margin-bottom: 8px; border: none; backdrop-filter: none; background: none; }
.tag { font-size: 12px; color: var(--muted); border: 1px solid var(--stroke); padding: 6px 8px; border-radius: 999px; }
.badge { position: absolute; top: 14px; right: 14px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0b0f14; font-weight: 800; font-size: 12px; padding: 8px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.4); box-shadow: 0 8px 18px rgba(34,211,238,.35); }
.badge.hot {
  background: linear-gradient(135deg, #ffdfd5, #fe2400);
  color: #0b0f14;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(81, 9, 9, 0.42);
  box-shadow: 0 8px 18px rgba(238, 34, 34, 0.35);
}
.deal .meta { display:flex; align-items:center; gap:10px; color: var(--muted); font-size: 13px; }
.deal .price { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }

.super-deal-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #0b0f14;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 16px rgba(34, 211, 238, 0.35);
}


/* directions */
.tag {
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--stroke);
  padding: 6px 8px;
  border-radius: 999px;
  min-width: 30px;
  text-align: center;
}
.route {
 display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.route strong {
  font-size: 16px;
  font-weight: 600;
}

.direction {
  font-size: 11px;
  color: var(--muted);
  margin-left: 2px;
}

.input {
  flex: 1;
  padding: 8px 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--glass-grad);
  color: var(--text);
  font-size: 15px;
  outline: none;
  box-shadow: var(--shadow);
  backdrop-filter: blur(var(--blur));
  transition: all 0.25s ease;
}

.input::placeholder {
  color: var(--muted);
  opacity: 0.8;
}

.input:focus {
  border-color: rgba(125, 211, 252, 0.6);
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  background: linear-gradient(to right, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
}

.input:hover {
  border-color: rgba(125, 211, 252, 0.4);
  transform: translateY(-1px);
}

.logo-badge svg {
  width: 65px;     /* можно 72px или 80px */
  height: 65px;
}


[data-theme="dark"] .logo-badge svg g:first-child {
  stroke: #38bdf8; /* голубой */
}
[data-theme="dark"] .logo-badge svg g:last-child {
  stroke: #0284c7; /* оранжевые узлы */
}

[data-theme="light"] .logo-badge svg g:first-child {
  stroke: #0284c7; /* более тёмный синий */
}
[data-theme="light"] .logo-badge svg g:last-child {
  stroke: #f97316; /* насыщенно-оранжевый */
}
