:root {
  --bg: #f6f6f5;
  --surface: #ffffff;
  --surface-muted: #f1f1f0;
  --text: #111212;
  --text-muted: #5c5f63;
  --accent: #ff7359;
  --accent-dark: #e35c46;
  --line: rgba(17, 18, 18, 0.08);
  --shadow: 0 16px 40px rgba(18, 18, 18, 0.12);
  --radius: 18px;
}

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

body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.4;
}

.orb-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  background: rgba(255, 115, 89, 0.4);
}

.orb-2 {
  width: 420px;
  height: 420px;
  bottom: -120px;
  left: -120px;
  background: rgba(255, 196, 170, 0.5);
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 64px);
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(246, 246, 245, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 10;
}

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

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-weight: 600;
}

.logo-text {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
  color: var(--text-muted);
}

.nav-cta {
  padding: 10px 18px;
  background: var(--text);
  color: white;
  border-radius: 999px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

main {
  padding: 0 clamp(20px, 5vw, 64px);
}

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

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

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary {
  padding: 14px 22px;
  background: var(--accent);
  color: white;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(255, 115, 89, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secondary {
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.device {
  width: min(360px, 80vw);
  height: 480px;
  border-radius: 32px;
  background: #1b1c20;
  padding: 18px;
  box-shadow: var(--shadow);
}

.device-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #fdfcfb;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.wave {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 6px;
  width: 100%;
  height: 100px;
  align-items: end;
}

.wave span {
  display: block;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 115, 89, 0.2));
  animation: wave 2.4s ease-in-out infinite;
}

.wave span:nth-child(odd) {
  animation-delay: 0.2s;
}

.wave span:nth-child(3n) {
  animation-delay: 0.4s;
}

.wave span:nth-child(4n) {
  animation-delay: 0.6s;
}

.card {
  width: 100%;
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
}

.card-title {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-time {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 6px;
}

.card-bar {
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
  margin-top: 12px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 115, 89, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.section-head p {
  color: var(--text-muted);
}

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

.feature-card {
  background: var(--surface);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.workflow {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 70px 40px;
}

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

.step {
  background: var(--surface);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.step-number {
  font-size: 0.9rem;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.quality-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
}

.quality-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quality-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-muted);
  font-size: 0.9rem;
}

.cta {
  display: flex;
  justify-content: center;
}

.cta-card {
  background: var(--text);
  color: white;
  padding: 40px;
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-actions a {
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wave {
  0%, 100% {
    height: 30%;
  }
  50% {
    height: 100%;
  }
}

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

  .site-header {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 40px;
  }

  .workflow {
    padding: 50px 20px;
  }

  .cta-card {
    padding: 32px 20px;
  }

  .quality-panel {
    padding: 24px;
  }
}
