@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Serif+SC:wght@500;600;700;800;900&family=Noto+Sans+SC:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --ink: #101820;
  --ink-soft: #2f3a43;
  --muted: #66717b;
  --paper: #f8fbfa;
  --paper-2: #f3f6f4;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.78);
  --line: rgba(16, 24, 32, 0.08);
  --line-strong: rgba(16, 24, 32, 0.15);

  --accent: #0f9da0;
  --accent-2: #27c4bd;
  --accent-dark: #087f83;
  --accent-soft: #e3f8f6;

  --coral: #ff6f91;
  --gold: #ff9f2e;
  --gold-deep: #c86d00;
  --gold-soft: #fff1d8;
  --mint: #e2f8f5;
  --rose: #ffe8ee;
  --lavender: #eee8ff;

  --shadow-soft:
    0 18px 44px -18px rgba(26, 36, 45, 0.14), 0 2px 8px rgba(26, 36, 45, 0.04);
  --shadow-lift:
    0 34px 86px -24px rgba(26, 36, 45, 0.26),
    0 10px 30px -14px rgba(26, 36, 45, 0.14);
  --shadow-glow: 0 18px 44px -14px rgba(15, 157, 160, 0.34);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --serif: "Noto Serif SC", "Songti SC", Georgia, serif;
  --sans:
    "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      46% 26% at 86% 2%,
      rgba(255, 232, 238, 0.9),
      transparent 72%
    ),
    radial-gradient(
      42% 22% at 8% 10%,
      rgba(227, 248, 246, 0.9),
      transparent 76%
    ),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01";
}

::selection {
  background: rgba(15, 139, 120, 0.22);
  color: var(--ink);
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  right: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 10px clamp(16px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px -18px rgba(16, 24, 32, 0.22);
  backdrop-filter: blur(20px) saturate(160%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(180deg, #25bbb7 0%, #0b8f90 100%);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 20px rgba(11, 143, 144, 0.22);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: rgba(16, 24, 32, 0.66);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 200ms var(--ease);
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--accent-2), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-action,
.primary-btn,
.secondary-btn,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition:
    transform 200ms var(--ease),
    box-shadow 200ms var(--ease),
    background 200ms var(--ease),
    border-color 200ms var(--ease);
}

.header-action,
.primary-btn,
.lead-form button {
  color: #fff;
  background: linear-gradient(180deg, #25bbb7 0%, #0b8f90 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34) inset,
    0 14px 26px -8px rgba(11, 143, 144, 0.42);
}

.header-action:hover,
.primary-btn:hover,
.lead-form button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34) inset,
    0 18px 34px -8px rgba(11, 143, 144, 0.48);
}

.secondary-btn {
  color: var(--ink);
  border: 1px solid rgba(16, 24, 32, 0.1);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.secondary-btn:hover {
  border-color: rgba(15, 157, 160, 0.28);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.78fr);
  gap: clamp(30px, 4vw, 72px);
  align-items: center;
  padding: 132px clamp(18px, 5vw, 72px) 84px;
  color: var(--ink);
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.82) 48%,
      rgba(255, 255, 255, 0.34) 100%
    ),
    radial-gradient(
      70% 64% at 92% 2%,
      rgba(255, 218, 226, 0.88),
      transparent 66%
    ),
    radial-gradient(
      52% 48% at 12% 78%,
      rgba(210, 247, 243, 0.86),
      transparent 72%
    ),
    url("apps/web/public/brand/beauty-atmosphere-header.png") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 160px;
  background: linear-gradient(transparent, var(--paper));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 6px 14px 6px 8px;
  border: 1px solid rgba(15, 157, 160, 0.16);
  border-radius: var(--radius-pill);
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 159, 46, 0.18);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.3vw, 76px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero h1 .accent-text {
  background: linear-gradient(135deg, #09989b 0%, #13aaa5 48%, #087f83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 680px;
  margin: 28px 0 0;
  color: #46535f;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.hero-actions .primary-btn,
.hero-actions .secondary-btn {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
}

.hero-demo-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
}

.hero-demo-links > span {
  margin-right: 4px;
  font-weight: 600;
}

.hero-demo-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    background 180ms var(--ease);
}

.hero-demo-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 157, 160, 0.28);
  background: #fff;
}

.hero-demo-links svg {
  width: 14px;
  height: 14px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: #536068;
  font-size: 13px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  width: 15px;
  height: 15px;
  padding: 2px;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  stroke-width: 3;
}

.hero-product {
  position: relative;
  z-index: 2;
  right: auto;
  bottom: auto;
  width: 100%;
  min-height: 560px;
  pointer-events: none;
}

.product-orbit {
  position: absolute;
  border: 1px solid rgba(15, 157, 160, 0.16);
  border-radius: 50%;
}

.orbit-one {
  inset: 20px -80px 20px 40px;
}

.orbit-two {
  inset: 88px -10px 86px -70px;
  border-color: rgba(255, 111, 145, 0.18);
}

.product-shot {
  position: absolute;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34) inset,
    var(--shadow-lift);
  backdrop-filter: blur(18px) saturate(140%);
}

.product-shot img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: #f8fbfa;
  object-fit: cover;
  object-position: top center;
}

.product-shot figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px);
}

.owner-shot {
  top: 12px;
  right: 2%;
  width: min(360px, 64%);
  height: 520px;
  transform: rotate(1.5deg);
}

.staff-shot {
  top: 132px;
  left: 0;
  width: min(320px, 58%);
  height: 410px;
  transform: rotate(-3deg);
}

.reveal-ready .value-strip article,
.reveal-ready .experience-card,
.reveal-ready .screenshot-card,
.reveal-ready .workflow-line article,
.reveal-ready .feature-grid article,
.reveal-ready .owner-copy,
.reveal-ready .owner-panel,
.reveal-ready .cta > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

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

.preview-phone {
  position: absolute;
  width: 256px;
  min-height: 488px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 38px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    var(--shadow-lift);
  backdrop-filter: blur(18px);
}

.customer-phone {
  right: 200px;
  top: 0;
  transform: rotate(-5deg);
}

.owner-phone {
  right: 0;
  top: 68px;
  transform: rotate(4deg);
}

.phone-speaker {
  width: 72px;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.4);
}

.phone-screen {
  min-height: 444px;
  padding: 22px 20px;
  border-radius: 28px;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf2 0%, #fffdf8 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.screen-kicker {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.phone-screen h2 {
  margin: 8px 0 16px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.compact-card,
.metric-strip div,
.owner-list div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 4px 12px rgba(20, 32, 29, 0.04);
}

.compact-card {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.compact-card b {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
}

.compact-card.active {
  border-color: rgba(15, 139, 120, 0.45);
  background: linear-gradient(135deg, var(--accent-soft), #fffaf2);
  box-shadow: 0 8px 18px rgba(15, 139, 120, 0.14);
}

.compact-card span,
.metric-strip span,
.owner-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.calendar-row,
.slot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.calendar-row span,
.slot-row span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    border-color 160ms var(--ease),
    color 160ms var(--ease),
    background 160ms var(--ease);
}

.calendar-row .active,
.slot-row .active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
  box-shadow: 0 6px 14px rgba(15, 139, 120, 0.28);
}

.phone-screen button {
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  border: 0;
  border-radius: var(--radius-md);
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(15, 139, 120, 0.28);
  cursor: pointer;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.metric-strip div {
  position: relative;
  overflow: hidden;
}

.metric-strip b {
  display: block;
  color: var(--accent-dark);
  font-size: 28px;
  font-weight: 800;
  font-feature-settings: "tnum";
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.value-strip,
.experience,
.screenshots,
.workflow,
.features,
.owner-view,
.cta {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.value-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -42px;
}

.value-strip article,
.experience-card,
.workflow-line article,
.feature-grid article {
  position: relative;
  border: 1px solid rgba(20, 32, 29, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.value-strip article {
  padding: 26px 24px;
  overflow: hidden;
}

.value-strip article::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(15, 157, 160, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.value-strip article::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--coral));
  transition: width 280ms var(--ease);
}

.value-strip article:hover::after {
  width: 100%;
}

.value-strip strong,
.value-strip span {
  display: block;
}

.value-strip strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}

.value-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.section-heading h2,
.cta h2,
.owner-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.cta p:not(.eyebrow),
.owner-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 680px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.experience-card {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 28px 26px;
  overflow: hidden;
  cursor: pointer;
}

.experience-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-2), var(--coral));
  transition: height 280ms var(--ease);
}

.experience-card:hover::after {
  height: 100%;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.experience-card span,
.feature-grid span,
.workflow-line span {
  color: var(--coral);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-card h3,
.workflow-line h3,
.feature-grid h3 {
  margin: 18px 0 10px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.experience-card p,
.workflow-line p,
.feature-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.experience-card b {
  margin-top: 12px;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms var(--ease);
}

.experience-card b::after {
  content: "→";
  transition: transform 200ms var(--ease);
}

.experience-card:hover b {
  gap: 10px;
}

.experience-card:hover b::after {
  transform: translateX(2px);
}

.experience-card.highlight {
  color: var(--ink);
  border-color: rgba(15, 157, 160, 0.22);
  background:
    radial-gradient(
      90% 80% at 0% 0%,
      rgba(39, 196, 189, 0.22),
      transparent 64%
    ),
    radial-gradient(
      90% 80% at 100% 100%,
      rgba(255, 111, 145, 0.18),
      transparent 64%
    ),
    #ffffff;
  box-shadow: var(--shadow-glow);
}

.experience-card.highlight p,
.experience-card.highlight span,
.experience-card.highlight b {
  color: inherit;
}

.experience-card.highlight b {
  color: var(--accent-dark);
}

.experience-card.highlight p {
  color: var(--muted);
}

.screenshots {
  scroll-margin-top: 110px;
  background:
    radial-gradient(
      42% 24% at 8% 12%,
      rgba(255, 232, 238, 0.74),
      transparent 72%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.76) 0%,
      rgba(248, 251, 250, 0) 100%
    ),
    var(--paper);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.screenshot-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 29, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.screenshot-card.large {
  grid-row: auto;
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: clamp(380px, 31vw, 540px);
  max-height: none;
  padding: 14px;
  background:
    radial-gradient(
      60% 34% at 84% 0%,
      rgba(255, 232, 238, 0.85),
      transparent 70%
    ),
    linear-gradient(180deg, #fbfdfc 0%, #eef8f7 100%);
  object-fit: contain;
  object-position: top center;
}

.screenshot-card.large img {
  max-height: none;
}

.screenshot-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
}

.screenshot-card b {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
}

.screenshot-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.workflow {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
  position: relative;
  padding-bottom: clamp(56px, 6vw, 84px);
}

.workflow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      40% 30% at 10% 20%,
      rgba(255, 232, 238, 0.72),
      transparent 70%
    ),
    radial-gradient(
      40% 30% at 90% 80%,
      rgba(15, 157, 160, 0.1),
      transparent 70%
    );
  pointer-events: none;
}

.workflow > * {
  position: relative;
  z-index: 1;
}

.workflow-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.workflow-line article {
  padding: 28px 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
}

.workflow-line article::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--accent-2), var(--gold));
  border-radius: 2px;
}

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

.feature-grid article {
  position: relative;
  min-height: 220px;
  padding: 26px 24px;
  overflow: hidden;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.features {
  padding-top: clamp(56px, 6vw, 84px);
}

.feature-grid article::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(196, 145, 59, 0.14),
    transparent 70%
  );
  pointer-events: none;
}

.feature-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.feature-grid span {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(
    135deg,
    rgba(255, 111, 145, 0.13),
    rgba(255, 111, 145, 0.06)
  );
  color: var(--coral);
  margin-bottom: 8px;
}

.owner-view {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
}

.owner-copy {
  max-width: 720px;
}

.owner-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(
      70% 50% at 100% 0%,
      rgba(255, 232, 238, 0.72),
      transparent 70%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}

.owner-panel::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(15, 157, 160, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.owner-panel > * {
  position: relative;
  z-index: 1;
}

.owner-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.owner-panel-header b {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  font-family: var(--sans);
}

.owner-panel-header b::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 139, 120, 0.22);
  margin-right: 6px;
  vertical-align: middle;
}

.owner-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.owner-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 6px 14px rgba(20, 32, 29, 0.04);
}

.owner-metrics span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--accent-dark);
  font-size: 30px;
  font-weight: 800;
  font-feature-settings: "tnum";
  letter-spacing: -0.01em;
}

.owner-list {
  display: grid;
  gap: 10px;
}

.owner-list div {
  display: grid;
  gap: 4px;
}

.owner-list b,
.owner-list span {
  display: block;
}

.owner-list b {
  font-size: 14px;
  font-weight: 600;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 460px);
  gap: 40px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      70% 50% at 0% 0%,
      rgba(39, 196, 189, 0.36),
      transparent 60%
    ),
    radial-gradient(
      70% 50% at 100% 100%,
      rgba(255, 111, 145, 0.28),
      transparent 60%
    ),
    linear-gradient(135deg, #0b3033 0%, #087f83 54%, #0f9da0 100%);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    50% 40% at 50% 50%,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta .eyebrow {
  background: linear-gradient(
    135deg,
    rgba(196, 145, 59, 0.2),
    rgba(196, 145, 59, 0.08)
  );
  border-color: rgba(196, 145, 59, 0.5);
}

.cta h2 {
  font-family: var(--serif);
}

.cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
  margin-top: 18px;
  max-width: 540px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.07)
  );
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  outline: none;
  transition:
    border-color 160ms var(--ease),
    box-shadow 160ms var(--ease);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 145, 59, 0.18);
}

.lead-form button {
  min-height: 50px;
  margin-top: 4px;
  font-size: 15px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 36px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.site-footer span:first-child {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .hero-product {
    width: min(560px, 100%);
    min-height: 500px;
    margin: 50px auto 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .value-strip,
  .experience-grid,
  .screenshot-grid,
  .workflow-line,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshot-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .owner-view,
  .cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    min-height: 56px;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
  }

  .nav-links {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 24px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92),
        rgba(255, 255, 255, 0.74)
      ),
      radial-gradient(
        70% 40% at 90% 0%,
        rgba(255, 232, 238, 0.82),
        transparent 70%
      ),
      url("apps/web/public/brand/beauty-atmosphere-header.png") center / cover;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-product {
    min-height: 370px;
    margin-top: 24px;
  }

  .hero-demo-links {
    align-items: flex-start;
  }

  .hero-demo-links > span {
    width: 100%;
  }

  .hero-proof {
    gap: 10px 16px;
  }

  .product-shot {
    padding: 8px;
    border-radius: 24px;
  }

  .product-shot img {
    border-radius: 17px;
  }

  .product-shot figcaption {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .owner-shot {
    right: -8px;
    width: 72%;
    height: 350px;
  }

  .staff-shot {
    top: 78px;
    left: -8px;
    width: 66%;
    height: 300px;
  }

  .preview-phone {
    width: 180px;
    min-height: 320px;
    border-radius: 30px;
    padding: 10px;
  }

  .customer-phone {
    right: auto;
    left: -8px;
  }

  .owner-phone {
    right: -8px;
    top: 36px;
  }

  .phone-screen {
    min-height: 282px;
    padding: 14px;
    border-radius: 22px;
  }

  .phone-screen h2 {
    font-size: 18px;
  }

  .phone-screen button,
  .owner-phone .compact-card:nth-of-type(3),
  .calendar-row {
    display: none;
  }

  .value-strip,
  .experience-grid,
  .screenshot-grid,
  .workflow-line,
  .feature-grid,
  .owner-metrics {
    grid-template-columns: 1fr;
  }

  .screenshot-card,
  .screenshot-card.large {
    grid-column: auto;
  }

  .screenshot-card img,
  .screenshot-card.large img {
    height: auto;
    max-height: none;
    padding: 10px;
  }

  .value-strip {
    margin-top: 0;
  }

  .experience-card {
    min-height: 240px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .section-heading h2,
  .cta h2,
  .owner-copy h2 {
    font-size: 34px;
  }
}

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

  .reveal-ready .value-strip article,
  .reveal-ready .experience-card,
  .reveal-ready .screenshot-card,
  .reveal-ready .workflow-line article,
  .reveal-ready .feature-grid article,
  .reveal-ready .owner-copy,
  .reveal-ready .owner-panel,
  .reveal-ready .cta > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
