:root {
  color-scheme: light;
  --bg: #FFFDFB;
  --surface: #ffffff;
  --ink: #381E15;
  --muted: #6E5E58;
  --line: rgba(69, 26, 3, 0.08);
  --blue: #D97706;
  --blue-dark: #B45309;
  --teal: #BE123C;
  --shadow: 0 18px 50px rgba(69, 26, 3, 0.08);
  --font-family: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--blue);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 251, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  font-size: 20px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 8vw, 90px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 20%, rgba(217, 119, 6, 0.1), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #FFFDFB 56%, #FDF2E9 100%);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
}

h1 {
  max-width: 680px;
  font-size: clamp(38px, 6vw, 68px);
  color: var(--ink);
}

.highlight-text {
  color: var(--blue);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.hero-text {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.22);
  transition: var(--transition);
}

.store-button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.store-button-secondary {
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(56, 30, 21, 0.18);
}

.store-button-secondary:hover {
  background: #4e342e;
}

.phone-preview {
  display: flex;
  justify-content: center;
}

.phone-preview img {
  width: min(300px, 70vw);
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(69, 26, 3, 0.04);
}

.feature-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.legal-page {
  width: min(840px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.legal-page h1 {
  font-size: clamp(36px, 6vw, 58px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-page p {
  color: var(--muted);
}

.legal-page ul {
  color: var(--muted);
  margin-bottom: 16px;
}

.updated {
  margin-top: 8px;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
}

.site-footer p {
  margin: 6px 0;
}

.site-footer a {
  color: var(--muted);
  text-decoration: underline;
}

.site-footer a:hover {
  color: var(--blue);
}

/* Data Deletion Guide CSS */
.delete-guide {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.guide-step {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px dashed var(--line);
}

.guide-step:last-child {
  border-bottom: none;
}

.guide-step-text {
  flex: 1.2;
}

.guide-step-text h3 {
  font-size: 22px;
  color: var(--ink);
}

.guide-step-text ol {
  color: var(--muted);
  margin-top: 12px;
  padding-left: 20px;
}

.guide-step-text ol li {
  margin-bottom: 8px;
}

.danger-badge {
  display: inline-block;
  background-color: var(--teal);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.guide-step-image {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.guide-step-image img {
  max-width: 100%;
  max-height: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--line);
}

.email-template {
  margin-top: 12px;
  background-color: #fcf8f6;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 8px;
  font-family: monospace;
  white-space: pre-wrap;
  color: var(--ink);
  font-size: 13px;
}

.provider-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.provider-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.provider-card h4 {
  margin: 0 0 6px;
}

.provider-card p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand {
    font-size: 18px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px 18px;
    gap: 30px;
  }

  .phone-preview img {
    width: min(240px, 60vw);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .provider-list {
    grid-template-columns: 1fr;
  }

  .guide-step {
    flex-direction: column;
    gap: 16px;
  }

  .guide-step-image img {
    max-height: 200px;
  }
}
