:root {
  color-scheme: only light;
  --ink: #111111;
  --ink-soft: #6b6b6b;
  --ink-mid: #2c2c2c;
  --surface: #ffffff;
  --surface-soft: #f6f6f6;
  --accent: #f39a2f;
  --accent-deep: #ea8a1f;
  --border: rgba(17, 17, 17, 0.12);
  --shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
}

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

body {
  min-height: 100vh;
  background: #ffffff;
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2.5rem clamp(1.5rem, 4vw, 5rem) 3.5rem;
}

.hidden {
  display: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.logo-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-subtitle {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.primary-button,
.secondary-button,
.ghost-button {
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.primary-button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(243, 154, 47, 0.35);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
  box-shadow: 0 16px 34px rgba(243, 154, 47, 0.35);
}

.secondary-button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
}

.ghost-button {
  background: transparent;
  color: var(--ink-mid);
}

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

.hero-copy h1 {
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
  line-height: 1.03;
  margin: 0.7rem 0 1rem;
  font-weight: 700;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

.eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0;
}

.hero-stats {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

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

.stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  padding: 1.2rem;
  border-radius: 32px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device-shot {
  position: absolute;
  right: -32px;
  top: 50%;
  width: min(50%, 300px);
  transform: translateY(-50%) rotate(-6deg);
  filter: drop-shadow(0 18px 34px rgba(17, 17, 17, 0.2));
}

.floating-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
  max-width: 210px;
}

.card-title {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.card-body {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.story {
  display: grid;
  place-items: center;
}

.story-card {
  background: var(--surface);
  border-radius: 28px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
  max-width: 860px;
  line-height: 1.7;
  color: var(--ink-mid);
}

.story-card p + p {
  margin-top: 1.4rem;
}

.features {
  display: grid;
  gap: 1.8rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 0.6rem;
}

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

.feature {
  background: var(--surface);
  border-radius: 22px;
  padding: 1.4rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.cta {
  background: var(--surface-soft);
  color: var(--ink);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.cta p {
  color: var(--ink-soft);
  max-width: 480px;
}

.footer {
  padding-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.order {
  background: #ffffff;
}

.order-main {
  display: grid;
  place-items: center;
  padding: 2rem 0 3rem;
}

.order-card {
  background: var(--surface);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  width: min(720px, 100%);
}

.order-form {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.order-form input {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  font-size: 0.95rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.order-form input:focus {
  outline: 2px solid rgba(243, 154, 47, 0.3);
  border-color: rgba(243, 154, 47, 0.4);
}

.order-form .span-2 {
  grid-column: span 2;
}

.order-form button {
  grid-column: span 2;
  justify-self: start;
}

.notice {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(243, 154, 47, 0.15);
  color: #6b3d07;
  font-weight: 600;
}

.helper {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .device-shot {
    position: static;
    width: min(70%, 240px);
    transform: none;
    margin: 1.2rem auto 0;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .order-form .span-2 {
    grid-column: span 1;
  }

  .cta {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero,
  .features,
  .story-card,
  .order-card {
    animation: rise 0.8s ease both;
  }

  .feature {
    animation: fadeUp 0.7s ease both;
  }

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

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

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

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

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

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

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