@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
--brand:      #2879B0;
--brand-2:    #1E6496;
--brand-3:    #4BB2F9;
--brand-glow: rgba(40, 121, 176, 0.18);
--accent:     #4BB2F9;
--accent-2:   #2879B0;
--dark:       #F7FBFF;
--dark-2:     #FFFFFF;
--dark-3:     #EEF5FC;
--surface:    #FFFFFF;
--surface-2:  #F0F7FD;
--surface-3:  #E3EFF9;
--text:       #061A2F;
--text-2:     #3A5870;
--text-3:     #6A8EA8;
--border:     rgba(6, 26, 47, 0.08);
--border-2:   rgba(6, 26, 47, 0.13);
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 20px;
--radius-xl: 28px;
}

html[data-theme="dark"] {
--brand-glow: rgba(40, 121, 176, 0.30);
--dark:       #04080f;
--dark-2:     #060d1a;
--dark-3:     #0a1628;
--surface:    #0d1f35;
--surface-2:  #112440;
--surface-3:  #162d4e;
--text:       #e0f2fe;
--text-2:     #7fb8d8;
--text-3:     #4a7a99;
--border:     rgba(56, 189, 248, 0.07);
--border-2:   rgba(56, 189, 248, 0.13);
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html {
scroll-behavior: smooth;
direction: ltr;
}

body {
font-family: 'Inter', system-ui, sans-serif;
color: var(--text);
background: #F7FBFF;
min-height: 100vh;
overflow-x: hidden;
direction: ltr;
}

body::before {
content: '';
position: fixed;
inset: 0;
background:
  radial-gradient(ellipse 70% 45% at 15% -5%, rgba(40, 121, 176, 0.10), transparent),
  radial-gradient(ellipse 55% 35% at 85% 5%, rgba(75, 178, 249, 0.10), transparent),
  radial-gradient(ellipse 45% 55% at 50% 105%, rgba(40, 121, 176, 0.06), transparent);
pointer-events: none;
z-index: 0;
}

html[data-theme="dark"] body {
background: #04080f;
}

html[data-theme="dark"] body::before {
background:
  radial-gradient(ellipse 70% 45% at 15% -5%, rgba(40, 121, 176, 0.13), transparent),
  radial-gradient(ellipse 55% 35% at 85% 5%, rgba(75, 178, 249, 0.09), transparent),
  radial-gradient(ellipse 45% 55% at 50% 105%, rgba(30, 100, 150, 0.07), transparent);
}

body.menu-open {
overflow: hidden;
}

.container {
width: min(1160px, calc(100% - 40px));
margin: 0 auto;
}

.site-header {
position: sticky;
top: 0;
z-index: 100;
padding: 14px 0;
}

.header-shell {
position: relative;
min-height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 8px 10px 8px 14px;
border: 1px solid var(--border-2);
border-radius: 999px;
background: rgba(255, 255, 255, 0.90);
box-shadow: 0 8px 32px rgba(6, 26, 47, 0.08);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
}

html[data-theme="dark"] .header-shell {
background: rgba(6, 13, 26, 0.88);
box-shadow: none;
}

.header-shell::before {
content: '';
position: absolute;
inset: 0;
border-radius: 999px;
padding: 1px;
background: linear-gradient(135deg, rgba(40, 121, 176, 0.28), transparent 50%, rgba(75, 178, 249, 0.12));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}

.brand {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--text);
text-decoration: none;
flex: 0 0 auto;
}

.brand-mark {
width: 38px;
height: 38px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 12px;
background: linear-gradient(135deg, var(--brand), var(--accent));
box-shadow: 0 0 18px var(--brand-glow);
overflow: hidden;
}

.brand-mark img {
width: 22px;
height: 22px;
object-fit: contain;
filter: brightness(0) invert(1);
}

.brand-text {
font-size: 18px;
font-weight: 800;
letter-spacing: -0.04em;
color: var(--text);
}

.brand-text span {
background: linear-gradient(135deg, var(--brand-3), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.desktop-nav {
display: flex;
align-items: center;
gap: 2px;
}

.desktop-nav a {
display: inline-flex;
align-items: center;
min-height: 36px;
padding: 0 14px;
border-radius: 999px;
color: var(--text-2);
font-size: 13.5px;
font-weight: 600;
letter-spacing: -0.01em;
text-decoration: none;
transition: all 0.18s ease;
}

.desktop-nav a:hover {
color: var(--text);
background: var(--surface-2);
}

.desktop-nav a.active {
color: #fff;
background: linear-gradient(135deg, var(--brand), var(--brand-2));
box-shadow: 0 4px 16px var(--brand-glow);
}

.header-actions {
display: flex;
align-items: center;
gap: 8px;
}

.header-cta {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
min-height: 40px;
padding: 0 18px;
border-radius: 999px;
color: #fff;
background: linear-gradient(135deg, var(--brand), var(--accent-2));
text-decoration: none;
font-size: 13.5px;
font-weight: 700;
letter-spacing: -0.01em;
box-shadow: 0 0 24px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,0.10);
transition: all 0.18s ease;
white-space: nowrap;
}

.header-cta:hover {
transform: translateY(-1px);
box-shadow: 0 0 38px rgba(40, 121, 176, 0.48), inset 0 1px 0 rgba(255,255,255,0.10);
}

.mobile-menu-toggle {
display: none;
width: 42px;
height: 42px;
border: 1px solid var(--border-2);
border-radius: 12px;
background: var(--surface-2);
cursor: pointer;
flex-shrink: 0;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
transition: all 0.18s ease;
}

.mobile-menu-toggle:hover {
background: var(--surface-3);
border-color: rgba(75, 178, 249, 0.2);
}

.mobile-menu-toggle span {
display: block;
width: 16px;
height: 1.5px;
border-radius: 99px;
background: var(--text-2);
transition: all 0.22s ease;
}

body.menu-open .mobile-menu-toggle span:first-child {
transform: translateY(6.5px) rotate(45deg);
}

body.menu-open .mobile-menu-toggle span:last-child {
transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
display: none;
}

.theme-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 7px;
min-height: 40px;
padding: 0 14px;
border: 1px solid var(--border-2);
border-radius: 999px;
color: var(--text);
background: var(--surface-2);
font-size: 13.5px;
font-weight: 700;
cursor: pointer;
transition: all 0.18s ease;
}

.theme-toggle:hover {
transform: translateY(-1px);
background: var(--surface-3);
}

.theme-toggle-icon {
font-size: 14px;
line-height: 1;
}

.social-actions {
display: inline-flex;
align-items: center;
gap: 7px;
}

.social-link {
width: 40px;
height: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid var(--border-2);
border-radius: 999px;
color: var(--text);
background: var(--surface-2);
text-decoration: none;
transition: all 0.18s ease;
}

.social-link svg {
width: 17px;
height: 17px;
display: block;
fill: currentColor;
}

.social-link:hover {
transform: translateY(-1px);
color: #ffffff;
background: linear-gradient(135deg, var(--brand), var(--accent-2));
border-color: transparent;
box-shadow: 0 0 22px var(--brand-glow);
}

.mobile-social-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 14px 8px 10px;
}

.mobile-social-actions .social-link {
width: 46px;
height: 46px;
}

.mobile-social-actions .social-link svg {
width: 18px;
height: 18px;
}

.site-main {
position: relative;
z-index: 1;
min-height: 60vh;
}

.hero {
position: relative;
padding: 92px 0 120px;
overflow: hidden;
}

.hero-grid {
position: relative;
display: grid;
grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
align-items: center;
gap: 56px;
}

.hero-content {
position: relative;
z-index: 2;
}

.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 5px 12px 5px 6px;
border-radius: 999px;
border: 1px solid rgba(75, 178, 249, 0.22);
background: rgba(40, 121, 176, 0.08);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.03em;
color: var(--accent);
margin-bottom: 28px;
}

.hero-eyebrow-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--accent);
box-shadow: 0 0 8px var(--accent);
animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
0%, 100% { opacity: 1; }
50% { opacity: 0.35; }
}

.hero h1 {
max-width: 820px;
color: #ffffff;
font-size: clamp(48px, 6.4vw, 82px);
line-height: 0.96;
letter-spacing: -0.06em;
font-weight: 900;
margin: 0 0 24px;
}

.hero h1 .gradient-word {
background: linear-gradient(135deg, var(--brand-3), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero p {
max-width: 620px;
color: var(--text-2);
font-size: 18px;
line-height: 1.72;
margin: 0 0 34px;
}

.hero-actions {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
margin-bottom: 28px;
}

.hero-trust {
display: flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
}

.hero-trust span {
display: inline-flex;
align-items: center;
min-height: 30px;
padding: 0 12px;
border: 1px solid var(--border-2);
border-radius: 999px;
color: var(--text-2);
background: rgba(255, 255, 255, 0.03);
font-size: 12.5px;
font-weight: 600;
}

.hero-app {
position: relative;
z-index: 2;
}

.btn-primary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 50px;
padding: 0 24px;
border-radius: 999px;
color: #fff;
background: linear-gradient(135deg, var(--brand), var(--accent-2));
text-decoration: none;
font-size: 15px;
font-weight: 700;
letter-spacing: -0.01em;
box-shadow: 0 0 36px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,0.12);
transition: all 0.18s ease;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 0 56px rgba(40, 121, 176, 0.50), inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-secondary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 50px;
padding: 0 24px;
border-radius: 999px;
color: var(--text);
background: var(--surface-2);
border: 1px solid var(--border-2);
text-decoration: none;
font-size: 15px;
font-weight: 600;
letter-spacing: -0.01em;
transition: all 0.18s ease;
}

.btn-secondary:hover {
background: var(--surface-3);
border-color: rgba(75, 178, 249, 0.2);
transform: translateY(-1px);
}

.search-card {
position: relative;
padding: 22px;
border: 1px solid var(--border-2);
border-radius: 30px;
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
box-shadow: 0 24px 70px rgba(6, 26, 47, 0.10);
overflow: visible;
}

.search-card::before {
content: "";
position: absolute;
inset: 0;
border-radius: 30px;
background:
  radial-gradient(circle at top right, rgba(75, 178, 249, 0.18), transparent 34%),
  radial-gradient(circle at bottom left, rgba(40, 121, 176, 0.16), transparent 38%);
pointer-events: none;
}

.widget-card {
min-height: 420px;
}

.search-card-top {
position: relative;
z-index: 2;
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 16px;
margin-bottom: 20px;
}

.search-label {
display: block;
margin-bottom: 7px;
color: var(--accent);
font-size: 12px;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.search-card h2 {
margin: 0;
color: var(--text);
font-size: 26px;
line-height: 1.1;
letter-spacing: -0.04em;
}

.ai-chip {
min-width: 46px;
height: 46px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 16px;
color: #ffffff;
background: linear-gradient(135deg, var(--brand), var(--accent-2));
font-size: 15px;
font-weight: 900;
box-shadow: 0 0 28px var(--brand-glow);
}

.search-note {
position: relative;
z-index: 2;
margin-top: 14px;
color: var(--text-3);
font-size: 12.5px;
line-height: 1.5;
text-align: center;
}

.travelpayouts-widget-box {
position: relative;
z-index: 2;
min-height: 300px;
padding: 0;
border: 0;
border-radius: 22px;
background: transparent;
overflow: visible;
direction: ltr !important;
text-align: left !important;
}

#tpwl-search,
#tpwl-tickets {
direction: ltr !important;
text-align: left !important;
}

#tpwl-search,
#tpwl-search * {
color: #0f172a !important;
}

#tpwl-search button,
#tpwl-search button *,
#tpwl-search [type="button"],
#tpwl-search [type="submit"],
#tpwl-search [role="button"],
#tpwl-search [role="button"] * {
color: #ffffff !important;
}

#tpwl-search input,
#tpwl-search select,
#tpwl-search textarea {
color: #0f172a !important;
background: #ffffff !important;
}

#tpwl-search input::placeholder,
#tpwl-search textarea::placeholder {
color: #94a3b8 !important;
opacity: 1 !important;
}

[class*="calendar"]:not([class*="hero"]):not([class*="section"]):not([class*="icon"]),
[class*="Calendar"]:not([class*="hero"]):not([class*="section"]):not([class*="icon"]),
[class*="datepicker"],
[class*="Datepicker"],
[class*="date-picker"],
[class*="DatePicker"] {
color: #0f172a !important;
background-color: #ffffff !important;
}

[class*="calendar"]:not([class*="hero"]) *,
[class*="Calendar"]:not([class*="hero"]) *,
[class*="datepicker"] *,
[class*="Datepicker"] * {
color: #0f172a !important;
}

[class*="calendar"] button[class*="primary"],
[class*="Calendar"] button[class*="primary"],
[class*="calendar"] button[class*="selected"],
[class*="Calendar"] button[class*="selected"] {
color: #ffffff !important;
}

.floating-card {
position: absolute;
z-index: 3;
min-width: 150px;
padding: 14px 16px;
border: 1px solid var(--border-2);
border-radius: 20px;
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow: 0 16px 48px rgba(6, 26, 47, 0.10);
}

.floating-card span {
display: block;
margin-bottom: 5px;
color: var(--text-3);
font-size: 11px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.06em;
}

.floating-card strong {
display: block;
color: var(--text);
font-size: 18px;
letter-spacing: -0.03em;
}

.floating-card-one {
top: -22px;
right: -16px;
}

.floating-card-two {
left: -22px;
bottom: 42px;
}

.site-footer {
position: relative;
z-index: 1;
padding: 32px 0;
border-top: 1px solid var(--border);
background: var(--dark-2);
}

.footer-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}

.footer-copy {
font-size: 13px;
color: var(--text-3);
font-weight: 500;
}

.footer-links {
display: flex;
align-items: center;
gap: 20px;
}

.footer-links a {
font-size: 13px;
color: var(--text-3);
text-decoration: none;
font-weight: 500;
transition: color 0.15s ease;
}

.footer-links a:hover {
color: var(--text-2);
}

.mono {
font-family: 'JetBrains Mono', monospace;
font-size: 0.85em;
}

.badge {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 3px 10px;
border-radius: 999px;
font-size: 11.5px;
font-weight: 600;
letter-spacing: 0.02em;
}

.badge-blue {
background: rgba(40, 121, 176, 0.12);
color: var(--brand-3);
border: 1px solid rgba(40, 121, 176, 0.2);
}

.badge-sky {
background: rgba(75, 178, 249, 0.10);
color: #7dd3fc;
border: 1px solid rgba(75, 178, 249, 0.18);
}

html[data-theme="dark"] .hero h1 {
color: #ffffff;
}

html[data-theme="dark"] .hero p {
color: #7fb8d8;
}

html[data-theme="dark"] .hero-trust span {
color: #7fb8d8;
background: rgba(255, 255, 255, 0.03);
border-color: rgba(56, 189, 248, 0.13);
}

html[data-theme="dark"] .search-card {
background: rgba(13, 31, 53, 0.82);
box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .search-hub {
background: #0d1f35;
border-color: rgba(56, 189, 248, 0.13);
}

html[data-theme="dark"] .search-tabs {
background: #060d1a;
border-bottom-color: rgba(56, 189, 248, 0.10);
}

html[data-theme="dark"] .search-tab {
color: #7fb8d8;
}

html[data-theme="dark"] .search-tab:hover {
background: #112440;
color: #e0f2fe;
}

html[data-theme="dark"] .search-tab.active {
background: #0d1f35;
color: #4BB2F9;
border-bottom-color: #4BB2F9;
}

html[data-theme="dark"] .search-panel {
background: #0d1f35;
}

html[data-theme="dark"] .search-note {
color: #4a7a99;
}

html[data-theme="dark"] .partner-badge {
background: #112440;
border-color: rgba(56, 189, 248, 0.13);
color: #7fb8d8;
}

html[data-theme="dark"] .partner-desc {
color: #7fb8d8;
}

html[data-theme="dark"] .ai-assistant-card {
background: #0d1f35;
border-color: rgba(56, 189, 248, 0.13);
}

html[data-theme="dark"] .ai-chat-box,
html[data-theme="dark"] .ai-messages {
background: #060d1a;
border-color: rgba(56, 189, 248, 0.10);
}

html[data-theme="dark"] .ai-msg-bubble {
background: #112440;
border-color: rgba(56, 189, 248, 0.13);
color: #e0f2fe;
}

html[data-theme="dark"] .ai-msg-user .ai-msg-bubble {
background: rgba(40, 121, 176, 0.15);
border-color: rgba(40, 121, 176, 0.25);
color: #e0f2fe;
}

html[data-theme="dark"] .ai-input-row {
background: #0d1f35;
border-top-color: rgba(56, 189, 248, 0.10);
}

html[data-theme="dark"] .ai-input {
color: #e0f2fe;
background: #0d1f35;
}

html[data-theme="dark"] .ai-input::placeholder {
color: #4a7a99;
}

html[data-theme="dark"] .floating-card {
background: rgba(13, 31, 53, 0.86);
box-shadow: 0 22px 55px rgba(0, 0, 0, 0.20);
}

html[data-theme="dark"] .btn-secondary {
color: #e0f2fe;
background: #112440;
border-color: rgba(56, 189, 248, 0.13);
}

html[data-theme="dark"] .btn-secondary:hover {
background: #162d4e;
border-color: rgba(75, 178, 249, 0.2);
}

html[data-theme="dark"] .site-footer {
background: #060d1a;
border-top: 1px solid rgba(56, 189, 248, 0.07);
}

html[data-theme="dark"] .footer-copy,
html[data-theme="dark"] .footer-links a {
color: #4a7a99;
}

html[data-theme="dark"] .footer-links a:hover {
color: #7fb8d8;
}

html[data-theme="dark"] .value-card {
background: #0d1f35;
border-color: rgba(56, 189, 248, 0.13);
}

html[data-theme="dark"] .post-card {
background: #0d1f35;
border-color: rgba(56, 189, 248, 0.13);
}

html[data-theme="dark"] .post-card:hover {
border-color: rgba(75, 178, 249, 0.28);
}

html[data-theme="dark"] .follow-band {
background: #0d1f35;
border-color: rgba(56, 189, 248, 0.13);
}

html[data-theme="dark"] .follow-links .social-link {
background: #112440;
border-color: rgba(56, 189, 248, 0.13);
}

html[data-theme="dark"] .mobile-menu-card {
background: #0d1f35;
border-color: rgba(56, 189, 248, 0.13);
}

html[data-theme="dark"] .mobile-menu-card a {
color: #e0f2fe;
}

html[data-theme="dark"] .mobile-menu-card a:hover {
background: #112440;
}

html[data-theme="dark"] .theme-toggle {
color: #e0f2fe;
background: #112440;
border-color: rgba(56, 189, 248, 0.13);
}

html[data-theme="dark"] .theme-toggle:hover {
background: #162d4e;
}

html[data-theme="dark"] .brand-mark img {
filter: brightness(0) invert(1);
}

html[data-theme="dark"] .desktop-nav a {
color: #7fb8d8;
}

html[data-theme="dark"] .desktop-nav a:hover {
color: #e0f2fe;
background: #112440;
}

@media (max-width: 980px) {
.hero-grid {
  grid-template-columns: 1fr;
  gap: 44px;
}

.hero-app {
  max-width: 560px;
}
}

@media (max-width: 860px) {
.site-header {
  padding: 10px 0;
}

.header-shell {
  min-height: 58px;
  padding: 8px 8px 8px 12px;
  border-radius: 20px;
}

.desktop-nav,
.header-cta {
  display: none;
}

.mobile-menu-toggle {
  display: inline-flex;
}

.brand-text {
  font-size: 17px;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 12px;
}

.theme-toggle-text {
  display: none;
}

.header-actions > .social-actions {
  display: none;
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 80px 16px 24px;
  opacity: 0;
  pointer-events: none;
  background: rgba(4, 8, 15, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 0.22s ease;
  overflow-y: auto;
}

body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  transform: translateY(-10px) scale(0.98);
  transition: transform 0.22s ease, opacity 0.22s ease;
  opacity: 0;
}

body.menu-open .mobile-menu-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mobile-menu-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.15s ease;
}

.mobile-menu-card a:hover {
  background: var(--surface-2);
}

.mobile-menu-card a:not(.social-link):not(.mobile-cta)::after {
  content: "→";
  font-size: 14px;
  color: var(--text-3);
}

.mobile-menu-card .mobile-cta {
  margin-top: 6px;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent-2));
  box-shadow: 0 0 22px var(--brand-glow);
}

.mobile-menu-card .mobile-cta::after {
  content: "";
}

.hero {
  padding: 62px 0 84px;
}

.hero h1 {
  font-size: clamp(42px, 12vw, 58px);
}

.hero p {
  font-size: 16px;
}

.hero-actions {
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  min-height: 46px;
  font-size: 14px;
  padding: 0 20px;
}

.search-card {
  padding: 16px;
  border-radius: 24px;
}

.search-card h2 {
  font-size: 22px;
}

.floating-card {
  display: none;
}

.footer-inner {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-links {
  flex-wrap: wrap;
  gap: 14px;
}
}

.blog-hero {
  position: relative;
  z-index: 1;
  padding: 56px 0 28px;
}
.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 14px 0 14px;
}
.blog-hero p {
  max-width: 560px;
  color: var(--text-2);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
}

.blog-list { position: relative; z-index: 1; padding: 20px 0 64px; }
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.post-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(75, 178, 249, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.post-card-img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  position: relative;
  overflow: hidden;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.post-card:hover .post-card-img img { transform: scale(1.05); }

.post-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-cat { align-self: flex-start; }
.post-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.post-card-excerpt {
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.55;
  flex: 1;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-3);
  font-size: 0.82rem;
  font-weight: 500;
}
.post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); display: inline-block; }

.article-wrap { position: relative; z-index: 1; padding: 30px 0 64px; }
.article-container { max-width: 760px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-3);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-3); }
.breadcrumb .breadcrumb-current { color: var(--text-3); }

.article-header { margin-bottom: 22px; }
.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
  margin: 14px 0 14px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-3);
  font-size: 0.88rem;
  font-weight: 500;
}

.article-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 22px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.affiliate-disclosure {
  font-size: 0.82rem;
  color: var(--text-3);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 11px 15px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.article-body { color: var(--text); font-size: 1.07rem; line-height: 1.75; }
.article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}
.article-body p { margin-bottom: 18px; color: var(--text-2); }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body em { color: var(--text); }
.article-body ul { margin: 0 0 18px; padding-left: 22px; color: var(--text-2); }
.article-body li { margin-bottom: 9px; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.affiliate-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
  padding: 26px 28px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(75, 178, 249, 0.14), transparent 45%),
    var(--surface);
  box-shadow: 0 0 50px var(--brand-glow);
}
.affiliate-cta-text { display: flex; flex-direction: column; gap: 6px; }
.affiliate-cta-text .ai-chip { align-self: flex-start; margin-bottom: 4px; }
.affiliate-cta-text h3 { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; }
.affiliate-cta-text p { color: var(--text-2); font-size: 0.96rem; max-width: 42ch; }
.affiliate-cta .btn-primary { flex: 0 0 auto; }

.related-posts { margin-top: 52px; padding-top: 32px; border-top: 1px solid var(--border); }
.related-title { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 20px; }

.article-404 { color: var(--text-2); font-size: 1.05rem; margin-top: 12px; }
.article-404 a { color: var(--accent); text-decoration: none; }

@media (max-width: 600px) {
  .affiliate-cta { padding: 22px; }
  .affiliate-cta .btn-primary { width: 100%; }
}

.home-section { position: relative; z-index: 1; padding: 46px 0; }

.section-head { margin-bottom: 26px; }
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.section-eyebrow {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 26px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.value-card:hover { transform: translateY(-3px); border-color: rgba(75, 178, 249, 0.25); }
.value-ic {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border-radius: 13px;
  background: rgba(75, 178, 249, 0.10);
  border: 1px solid rgba(75, 178, 249, 0.18);
  margin-bottom: 14px;
}
.value-card h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 7px; }
.value-card p { color: var(--text-2); font-size: 0.96rem; line-height: 1.55; }

.follow-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding: 30px 32px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(75, 178, 249, 0.12), transparent 50%),
    var(--surface);
}
.follow-text h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 5px; }
.follow-text p { color: var(--text-2); font-size: 0.98rem; }
.follow-links { display: flex; gap: 12px; }
.follow-links .social-link {
  width: 46px; height: 46px;
  border: 1px solid var(--border-2);
  border-radius: 13px;
  background: var(--surface-2);
}