:root {
  --bg: #f3efe7;
  --bg-strong: #efe4d3;
  --surface: rgba(255, 252, 246, 0.76);
  --surface-strong: #fffaf2;
  --card: rgba(255, 248, 240, 0.94);
  --text: #1f1d1a;
  --muted: #62584b;
  --line: rgba(64, 43, 18, 0.12);
  --accent: #0f766e;
  --accent-strong: #115e59;
  --accent-soft: #c7f0e7;
  --highlight: #ef7f45;
  --shadow: 0 24px 60px rgba(57, 36, 13, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(239, 127, 69, 0.16), transparent 26%),
    linear-gradient(180deg, #fbf7f0 0%, var(--bg) 50%, #efe6d7 100%);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 48px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0 28px;
  padding: 14px 18px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(37, 25, 13, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: none;
}

.brand-logo img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.92rem;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.05;
}

.brand-copy span:last-child {
  color: var(--muted);
  line-height: 1.1;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}

.section {
  padding: 48px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 180px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 11ch;
}

.hero-text,
.section-heading,
.feature-card p,
.showcase-copy p,
.workflow-card p,
.plan-card p,
.shortcut-item p,
.faq-list p,
.metric-card p,
.footer p {
  color: var(--muted);
}

.hero-text {
  margin: 22px 0 0;
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #149d92);
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.26);
}

.button-secondary {
  background: rgba(255, 251, 246, 0.75);
  border-color: var(--line);
}

.hero-points {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.plan-card li {
  position: relative;
  padding-left: 22px;
}

.hero-points li::before,
.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--highlight), #f2a65a);
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-shot {
  position: absolute;
  top: 108px;
  right: 36px;
  left: 36px;
}

.hero-shot img,
.showcase-card .frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 250, 242, 0.8);
}

.floating-card {
  position: absolute;
  z-index: 2;
  max-width: 250px;
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 242, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 36px rgba(47, 29, 11, 0.12);
  backdrop-filter: blur(18px);
}

.floating-card strong,
.metric-card strong,
.feature-card h3,
.showcase-copy h3,
.workflow-card h3,
.plan-name,
.plan-price {
  font-family: "Space Grotesk", sans-serif;
}

.card-label,
.chip,
.metric-card span,
.plan-name {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.card-a {
  top: 18px;
  left: -10px;
}

.card-b {
  right: -18px;
  bottom: 28px;
}

.frame-main {
  aspect-ratio: 1280 / 774;
}

.frame-session {
  aspect-ratio: 840 / 1086;
}

.frame-groups {
  aspect-ratio: 874 / 1192;
}

.frame-auto-group {
  aspect-ratio: 840 / 1114;
}

.frame-notes {
  aspect-ratio: 874 / 990;
}

.metrics,
.workflow-steps,
.plans-grid,
.shortcut-list {
  display: grid;
  gap: 22px;
}

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

.metric-card,
.feature-card,
.showcase-card,
.workflow-card,
.plan-card,
.shortcut-item,
.faq-list details {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metric-card,
.feature-card,
.workflow-card,
.plan-card,
.shortcut-item,
.faq-list details {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.metric-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.section-heading.narrow {
  max-width: 640px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  min-height: 220px;
}

.feature-card h3,
.showcase-copy h3,
.workflow-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.showcase-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 18px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.showcase-card.spotlight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 22px;
  align-items: center;
}

.showcase-card .frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.showcase-card:hover,
.showcase-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(57, 36, 13, 0.16);
}

.showcase-copy {
  padding: 12px 8px 8px;
}

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

.workflow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

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

.plan-card {
  position: relative;
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.12), rgba(255, 248, 240, 0.92));
  border-color: rgba(15, 118, 110, 0.24);
}

.plan-price {
  display: block;
  margin: 12px 0 10px;
  font-size: 2.4rem;
}

.plan-price span {
  font-size: 1rem;
  color: var(--muted);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

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

.showcase-grid > .showcase-card:not(.spotlight) {
  display: flex;
  flex-direction: column;
}

.showcase-grid > .showcase-card:not(.spotlight) .frame {
  min-height: 380px;
}

.showcase-grid > .showcase-card:not(.spotlight) .showcase-copy {
  padding-top: 16px;
}

.showcase-grid > .showcase-card:not(.spotlight) .showcase-copy p {
  font-size: 0.98rem;
  line-height: 1.7;
}

.showcase-card.spotlight .showcase-copy p {
  font-size: 1rem;
  line-height: 1.75;
}

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

kbd {
  min-width: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(34, 28, 20, 0.12);
  box-shadow: inset 0 -2px 0 rgba(34, 28, 20, 0.08);
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
}

.shortcut-item p {
  margin: 0 0 0 auto;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details[open] {
  background: rgba(255, 251, 246, 0.95);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

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

.faq-list p {
  margin: 14px 0 0;
  line-height: 1.7;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 28px 0 12px;
}

.footer p {
  margin: 6px 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1080px) {
  .hero,
  .showcase-card.spotlight,
  .metrics,
  .feature-grid,
  .workflow-steps,
  .plans-grid,
  .shortcut-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 680px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid > .showcase-card:not(.spotlight) .frame {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .topbar {
    top: 10px;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .brand-logo {
    width: auto;
  }

  .brand-logo img {
    height: 46px;
  }

  .brand-copy {
    font-size: 0.84rem;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    gap: 28px;
    padding-top: 12px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-shot {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin: 82px 0 0;
  }

  .floating-card {
    max-width: 220px;
    padding: 14px;
  }

  .card-a {
    top: 8px;
    left: 0;
  }

  .card-b {
    right: 0;
    bottom: 18px;
  }

  .section {
    padding: 34px 0;
  }

  .shortcut-item {
    flex-wrap: wrap;
  }

  .shortcut-item p {
    width: 100%;
    margin-left: 0;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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