﻿:root {
  --bg: #f6f3ee;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #ff6b35;
  --accent-dark: #d95420;
  --card: #ffffff;
  --stroke: #e4ded7;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.12), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(50, 120, 255, 0.10), transparent 40%),
    var(--bg);
}

h1, h2, h3 {
  font-family: "Oswald", sans-serif;
  margin: 0 0 0.5rem 0;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 243, 238, 0.9);
  backdrop-filter: blur(8px);
  z-index: 10;
  border-bottom: 1px solid var(--stroke);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-text .name {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
}

.brand-text .tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
}

.cta {
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.ghost {
  background: transparent;
  border: 2px solid var(--ink);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--accent-dark);
}

.sub {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badges span {
  background: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid var(--stroke);
}

.hero-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  animation: floatIn 0.7s ease;
}

.deal-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: #f9f7f4;
  border: 1px solid var(--stroke);
}

.deal-title {
  font-weight: 600;
}

.deal-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.deal-price {
  text-align: right;
}

.old {
  display: block;
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.85rem;
}

.new {
  font-size: 1.1rem;
  font-weight: 700;
}

.micro {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.section {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.featured {
  background: #fff;
}

.deal-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.deal {
  background: #121212;
  color: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  display: grid;
  gap: 0.8rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.deal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(255, 107, 53, 0.4), transparent 45%);
  opacity: 0.6;
}

.deal > * {
  position: relative;
  z-index: 1;
}

.deal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pill {
  background: #fff;
  color: #121212;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.score {
  font-weight: 600;
  font-size: 0.85rem;
}

.deal-meta {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}

.cut {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
}

.guides {
  background: #f2efe9;
}

.newsletter {
  background: #1b1b1b;
  color: #fff;
}

.newsletter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

input[type="email"] {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: none;
  min-width: 220px;
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--stroke);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@keyframes floatIn {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 880px) {
  .nav { display: none; }
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; }
  .hero { padding-top: 2.5rem; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .form { width: 100%; }
  input[type="email"] { flex: 1; }
}
