:root {
  --bg: #fff7f0;
  --bg-elevated: rgba(255, 255, 255, 0.78);
  --bg-card: #fffdf9;
  --text: #152235;
  --muted: #536074;
  --line: rgba(21, 34, 53, 0.11);
  --accent: #ff6b4a;
  --accent-strong: #eb5331;
  --accent-soft: #ffd6c8;
  --accent-cool: #7ae0d3;
  --shadow: 0 22px 60px rgba(21, 34, 53, 0.14);
  --shadow-soft: 0 14px 36px rgba(21, 34, 53, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1120px;
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Avenir Next", "Circular Std", "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 214, 200, 0.85), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(122, 224, 211, 0.34), transparent 24%),
    linear-gradient(180deg, #fffaf4 0%, var(--bg) 55%, #fff3eb 100%);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 107, 74, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(255, 247, 240, 0.72);
  border-bottom: 1px solid rgba(21, 34, 53, 0.05);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 1.05rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(21, 34, 53, 0.12);
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.16);
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-wordmark {
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--text);
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav-static {
  position: static;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(21, 34, 53, 0.06);
}

.nav-cta.button {
  margin-left: 0.45rem;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.18rem auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.35rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 35px rgba(255, 107, 74, 0.3);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--text);
}

.button-large {
  min-height: 3.6rem;
  padding-inline: 1.45rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero {
  padding-top: 2rem;
}

.hero-grid {
  display: grid;
  gap: 2.6rem;
  align-items: start;
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 9vw, 5.8rem);
}

.hero-subhead,
.section-heading p,
.why-panel p,
.feature-card p,
.faq-item p,
.contact-copy p {
  color: var(--muted);
}

.hero-subhead {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  font-size: clamp(1.04rem, 2.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-support {
  max-width: 34rem;
  margin-top: 1rem;
  font-size: 0.98rem;
}

.hero-proof {
  margin-top: 0.8rem;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-proof + .hero-support {
  margin-top: 0.45rem;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 0;
  padding: 0;
}

.stage-glow {
  position: absolute;
  inset: 6% 4% 4%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 107, 74, 0.28), transparent 24%),
    radial-gradient(circle at 75% 20%, rgba(122, 224, 211, 0.38), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 238, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  filter: blur(3px);
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(21, 34, 53, 0.1);
  pointer-events: none;
}

.orbit-left {
  left: 2%;
  top: 14%;
  width: 8rem;
  height: 8rem;
}

.orbit-right {
  right: 3%;
  bottom: 12%;
  width: 10rem;
  height: 10rem;
}

.device-stack {
  position: relative;
  min-height: 0;
  padding: 0;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.2rem;
  min-width: 11rem;
  padding: 0.9rem 1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 38px rgba(21, 34, 53, 0.12);
  backdrop-filter: blur(14px);
}

.floating-note strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.floating-note span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
}

.floating-label,
.floating-badge {
  justify-self: start;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-label {
  color: #17475a;
  background: rgba(122, 224, 211, 0.24);
}

.floating-badge {
  color: #8b2d43;
  background: rgba(255, 214, 200, 0.45);
}

.floating-note-top {
  top: 1rem;
  right: 0.6rem;
}

.floating-note-bottom {
  left: 0.4rem;
  bottom: 1rem;
}

.hero-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: start;
  max-width: 31rem;
  margin-left: auto;
  padding: 0;
}

.shot-card {
  position: relative;
  overflow: visible;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 45px rgba(21, 34, 53, 0.2);
  padding: 0.4rem;
}

.shot-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}

.shot-card-primary .shot-image,
.shot-card-secondary .shot-image {
  min-height: 0;
  object-fit: contain;
  background: #fff;
}

.shot-card-primary {
  max-width: 31rem;
}

.shot-card-secondary {
  max-width: 27rem;
}

.section-heading {
  max-width: 44rem;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.section-heading p,
.contact-copy p {
  margin-top: 1rem;
  font-size: 1.04rem;
}

.why-grid,
.feature-grid,
.contact-shell {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.why-panel,
.feature-card,
.faq-item,
.contact-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.why-panel {
  padding: 1.4rem;
}

.why-panel h3,
.feature-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.why-panel-accent {
  background:
    linear-gradient(160deg, rgba(255, 214, 200, 0.82), rgba(255, 255, 255, 0.9));
}

.benefit-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 34, 53, 0.08);
  font-weight: 700;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.1rem;
  height: 1.1rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 18%, transparent 22%),
    var(--accent);
  box-shadow: 0 0 0 0.3rem rgba(255, 107, 74, 0.15);
}

.feature-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.feature-card {
  padding: 1.4rem;
}

.feature-icon {
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background-color: rgba(21, 34, 53, 0.08);
  position: relative;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.feature-icon-split::before,
.feature-icon-split::after {
  top: 0.65rem;
  bottom: 0.65rem;
  width: 0.72rem;
  border-radius: 999px;
}

.feature-icon-split::before {
  left: 0.75rem;
  background: var(--accent);
}

.feature-icon-split::after {
  right: 0.75rem;
  background: var(--accent-cool);
}

.feature-icon-creator::before {
  left: 0.82rem;
  top: 0.76rem;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  border: 0.28rem solid var(--accent);
}

.feature-icon-creator::after {
  left: 1.62rem;
  top: 1.6rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--accent-cool);
}

.feature-icon-speed::before {
  left: 0.9rem;
  top: 0.8rem;
  width: 1.45rem;
  height: 1.45rem;
  border: 0.24rem solid var(--text);
  border-radius: 50%;
}

.feature-icon-speed::after {
  left: 1.55rem;
  top: 0.95rem;
  width: 0.24rem;
  height: 1rem;
  background: var(--accent);
  transform: rotate(36deg);
  transform-origin: bottom center;
  border-radius: 999px;
}

.feature-icon-clean::before {
  inset: 0.72rem;
  border-radius: 0.8rem;
  border: 0.2rem solid var(--accent-strong);
}

.feature-icon-clean::after {
  left: 0.95rem;
  right: 0.95rem;
  bottom: 1rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--accent-cool);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.3rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-strong);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.3rem 1.2rem;
  margin: 0;
}

.contact-shell {
  padding: 1.2rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.7rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.footer-cta {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(150deg, rgba(21, 34, 53, 0.95), rgba(28, 48, 73, 0.92));
  color: #fff;
}

.footer-cta p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.footer-note {
  display: inline-block;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.footer-legal {
  margin-top: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  text-underline-offset: 0.16em;
}

.legal-page {
  padding-top: 2rem;
}

.legal-shell {
  max-width: 52rem;
}

.legal-shell h1 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.98;
  font-size: clamp(2.6rem, 8vw, 4.8rem);
}

.legal-updated {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.legal-card {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 1.6rem 0 0.7rem;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.legal-card li + li {
  margin-top: 0.55rem;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.42); }
  50% { box-shadow: 0 0 0 0.45rem rgba(255, 107, 74, 0); }
}

@keyframes equalize {
  0%, 100% { transform: scaleY(0.75); opacity: 0.65; }
  50% { transform: scaleY(1.05); opacity: 1; }
}

@media (min-width: 760px) {
  .section {
    padding: 6.25rem 0;
  }

  .hero-grid,
  .contact-shell {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-shell {
    align-items: stretch;
  }
}

@media (max-width: 899px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: grid;
    gap: 0.45rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: flex-start;
    padding-inline: 1rem;
  }

  .nav-cta.button {
    margin-left: 0;
    margin-top: 0.2rem;
    justify-content: center;
  }

  .hero-visual {
    min-height: 26rem;
  }

  .device-stack {
    min-height: 26rem;
    padding-inline: 0;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin: 0 auto;
    gap: 1rem;
    padding-top: 0.5rem;
  }

  .floating-note,
  .hero-orbit {
    display: none;
  }

  .shot-card {
    padding: 0.3rem;
  }

  .shot-card-primary .shot-image,
  .shot-card-secondary .shot-image {
    min-height: 0;
  }
}

@media (min-width: 900px) {
  .site-nav {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
