@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #f7f2ea;
  --bg-deep: #ede3d7;
  --ink: #1b1b1b;
  --muted: #5f5a52;
  --accent: #ff6b3d;
  --accent-dark: #e24f20;
  --emerald: #1f7a5c;
  --card: #fffaf4;
  --border: #e1d6c8;
  --shadow: 0 18px 50px rgba(28, 24, 19, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 20%, #fff6ea 0%, transparent 45%),
    radial-gradient(circle at 85% 0%, #ffe9d5 0%, transparent 40%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-deep) 100%);
  min-height: 100vh;
  padding: 32px 6vw 48px;
  position: relative;
  overflow-x: hidden;
}

.orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.5;
  z-index: 0;
}

.orb-1 {
  background: radial-gradient(circle, rgba(255, 107, 61, 0.45), transparent 70%);
  top: -120px;
  right: -80px;
}

.orb-2 {
  background: radial-gradient(circle, rgba(31, 122, 92, 0.35), transparent 70%);
  bottom: -160px;
  left: -100px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), #ffb38a);
  display: inline-block;
  box-shadow: 0 4px 12px rgba(255, 107, 61, 0.35);
}

.brand-name {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.3rem;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(255, 107, 61, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(255, 107, 61, 0.35);
}

.cta-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}

.cta-outline:hover {
  background: rgba(255, 107, 61, 0.1);
  box-shadow: none;
}

.cta-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid transparent;
  box-shadow: none;
}

.cta-ghost:hover {
  border-color: var(--border);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 80px 0 64px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.metric {
  font-size: 1.1rem;
  font-weight: 600;
}

.metric-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.panel-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.panel-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.panel-card.accent {
  background: linear-gradient(135deg, rgba(31, 122, 92, 0.15), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(31, 122, 92, 0.3);
}

.schedule-grid {
  display: grid;
  gap: 10px;
}

.schedule-pill {
  padding: 10px 14px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.trend-bars {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.trend-bars span {
  display: block;
  width: 18%;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 107, 61, 0.15));
}

.trend-bars span:nth-child(2) {
  height: 54px;
}

.trend-bars span:nth-child(3) {
  height: 70px;
}

.trend-bars span:nth-child(4) {
  height: 58px;
}

.trend-bars span:nth-child(5) {
  height: 44px;
}

.section {
  padding: 64px 0;
}

.section-header {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-header p {
  color: var(--muted);
  line-height: 1.6;
}

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

.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(28, 24, 19, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(28, 24, 19, 0.12);
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.5;
}

.workflow {
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border);
}

.step-count {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--emerald);
  font-weight: 600;
}

.step h3 {
  margin: 12px 0 8px;
}

.step p {
  color: var(--muted);
  line-height: 1.5;
}

.compliance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.compliance-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.compliance-card.muted {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(31, 122, 92, 0.08));
}

.compliance-card h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.compliance-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.compliance-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.compliance-card li::before {
  content: "+";
  margin-right: 10px;
  color: var(--accent-dark);
  font-weight: 700;
}

.access {
  padding-top: 72px;
}

.access-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.access-card h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.access-card p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
}

.access-actions {
  display: grid;
  gap: 10px;
}

.access-actions .cta {
  background: var(--accent);
}

.fineprint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.policy {
  padding: 96px 0 64px;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.policy-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.policy-card h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.policy-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.policy-card a {
  color: var(--emerald);
  text-decoration: none;
}

.policy-card a:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(28, 24, 19, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.footer-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-right {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-dot {
  opacity: 0.5;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  body {
    padding: 24px 6vw 40px;
  }

  .site-nav {
    display: none;
  }

  .workflow {
    padding: 48px 20px;
  }

  .access-card {
    padding: 28px;
  }

  .policy-card {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

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

.hero-copy,
.hero-panel,
.feature-card,
.step,
.compliance-card {
  animation: floatIn 0.9s ease both;
}

.feature-card:nth-child(2) {
  animation-delay: 0.05s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.15s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.25s;
}

.step:nth-child(2) {
  animation-delay: 0.1s;
}

.step:nth-child(3) {
  animation-delay: 0.2s;
}

.step:nth-child(4) {
  animation-delay: 0.3s;
}
