:root {
  --bg: #f5f2f0;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --cream: #fef0e8;
  --line: #e9ecef;
  --text: #2a2d34;
  --muted: #60646c;
  --orange: #f96b18;
  --orange-dark: #df5407;
  --green: #29cd57;
  --yellow: #faad14;
  --shadow: 0 24px 60px rgba(42, 45, 52, 0.14);
  --soft-shadow: 0 14px 34px rgba(42, 45, 52, 0.1);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 22% 9%, rgba(41, 205, 87, 0.12) 0 92px, transparent 94px),
    radial-gradient(circle at 89% 12%, rgba(249, 107, 24, 0.13) 0 214px, transparent 216px),
    radial-gradient(circle at 6% 66%, rgba(249, 107, 24, 0.11) 0 190px, transparent 192px),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.46;
  background-image:
    radial-gradient(circle at 8px 8px, rgba(249, 107, 24, 0.11) 0 4px, transparent 5px),
    radial-gradient(circle at 20px 2px, rgba(249, 107, 24, 0.1) 0 4px, transparent 5px),
    radial-gradient(circle at 31px 8px, rgba(249, 107, 24, 0.1) 0 4px, transparent 5px),
    radial-gradient(ellipse at 20px 23px, rgba(249, 107, 24, 0.1) 0 9px, transparent 10px);
  background-size: 170px 170px;
}

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

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

button,
input {
  font: inherit;
}

.section-shell {
  width: min(1232px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 48px));
  min-height: 76px;
  margin: 34px auto 0;
  padding: 14px 24px 14px 30px;
  border: 1px solid rgba(233, 236, 239, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  background: var(--orange);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  position: absolute;
  display: block;
  content: "";
  border-radius: 999px;
  background: #fff;
}

.brand-mark::before {
  top: 13px;
  left: 12px;
  width: 8px;
  height: 8px;
}

.brand-mark::after {
  top: 13px;
  right: 12px;
  width: 8px;
  height: 8px;
}

.brand-mark span::before {
  top: 7px;
  left: 17px;
  width: 8px;
  height: 8px;
}

.brand-mark span::after {
  left: 13px;
  bottom: 9px;
  width: 16px;
  height: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

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

.nav-cta {
  margin-left: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(42, 45, 52, 0.16);
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #111318;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 610px);
  gap: 60px;
  align-items: center;
  padding: 70px 0 54px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
  padding: 8px 16px;
  border: 1px solid #ffe8da;
  border-radius: 999px;
  background: var(--cream);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow span,
.floating-chip span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 1px rgba(42, 45, 52, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy h1::after {
  display: block;
  width: 290px;
  height: 12px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 25px;
  line-height: 1.45;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 32px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 32px rgba(249, 107, 24, 0.24);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  border: 2px solid var(--text);
  background: rgba(255, 255, 255, 0.74);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 34px;
  align-items: center;
  margin-top: 66px;
}

.hero-stats div {
  display: grid;
  grid-template-columns: max-content minmax(120px, 160px);
  gap: 14px;
  align-items: center;
}

.hero-stats div + div {
  padding-left: 34px;
  border-left: 2px solid #d8d0cb;
}

.hero-stats strong {
  font-size: 46px;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 575px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  position: absolute;
  inset: 24px;
  border: 1px solid #dfe8ec;
  border-radius: 8px;
  background: #fffdfb;
  content: "";
}

.hero-pets {
  position: absolute;
  right: 62px;
  top: 68px;
  z-index: 1;
  width: 354px;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: 54% 52%;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(42, 45, 52, 0.1);
  font-size: 15px;
  font-weight: 800;
}

.chip-left {
  top: 40px;
  left: 8px;
}

.chip-right {
  right: 24px;
  bottom: 16px;
}

.chip-right span {
  background: var(--orange);
}

.popup-preview {
  position: absolute;
  left: 48px;
  top: 98px;
  z-index: 2;
  width: min(350px, calc(100% - 96px));
  padding: 26px 24px 16px;
  border: 2px solid var(--text);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(42, 45, 52, 0.12);
}

.popup-media-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
}

.popup-media-row img {
  width: 96px;
  height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.popup-media-row p {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.popup-media-row h2 {
  margin: 0 0 2px;
  font-size: 42px;
  line-height: 1;
}

.popup-media-row strong {
  color: var(--green);
  font-size: 20px;
}

.popup-preview h3 {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.25;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.choice-row button {
  min-height: 48px;
  border: 1px solid #d8dfe4;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
}

.choice-row button.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.email-field {
  display: block;
  margin-bottom: 14px;
}

.email-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.email-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 20px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
  color: var(--text);
}

.popup-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: min(1232px, calc(100% - 48px));
  margin: 0 auto 96px;
}

.proof-strip span {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-weight: 800;
}

.section-intro {
  max-width: 860px;
  margin-bottom: 36px;
  text-align: center;
}

.section-intro .kicker,
.section-heading .kicker,
.results-copy .kicker,
.shopify-card .kicker {
  margin-bottom: 18px;
}

.section-intro h2,
.section-heading h2,
.results-copy h2,
.shopify-card h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section-intro p,
.section-heading p,
.results-copy p,
.shopify-card p {
  color: var(--muted);
  font-size: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 112px;
}

.feature-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(42, 45, 52, 0.06);
}

.feature-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #ecfff2;
}

.icon-paw::before,
.icon-paw::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: var(--green);
}

.icon-paw::before {
  top: 15px;
  left: 17px;
  width: 20px;
  height: 20px;
  box-shadow: -8px -8px 0 -4px var(--green), 8px -8px 0 -4px var(--green);
}

.icon-paw::after {
  bottom: 10px;
  left: 18px;
  width: 18px;
  height: 14px;
}

.icon-flow {
  background: var(--cream);
}

.icon-flow::before {
  position: absolute;
  top: 17px;
  left: 14px;
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 12px 0 var(--orange);
  content: "";
}

.icon-flow::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.icon-chart::before {
  position: absolute;
  left: 14px;
  top: 28px;
  width: 28px;
  height: 18px;
  border-left: 6px solid var(--green);
  border-bottom: 6px solid var(--green);
  transform: skewY(-35deg);
  content: "";
}

.feature-card h3,
.template-card h3,
.flow-step h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.1;
}

.feature-card p,
.template-card p,
.flow-step p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.gallery-section,
.personalization,
.results,
.shopify-section,
.faq {
  margin-bottom: 112px;
}

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

.template-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(42, 45, 52, 0.08);
}

.template-card img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.template-card div {
  padding: 20px 20px 24px;
}

.template-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.flow-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.flow-step {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-weight: 900;
}

.results {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1fr);
  gap: 64px;
  align-items: center;
}

.results-copy p {
  max-width: 520px;
  margin-bottom: 32px;
}

.dashboard-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.dashboard-header div {
  display: flex;
  gap: 8px;
}

.dashboard-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
}

.dashboard-header span:nth-child(2) {
  background: var(--yellow);
}

.dashboard-header span:nth-child(3) {
  background: var(--green);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.metric-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.metric-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.metric-row strong {
  font-size: 32px;
  line-height: 1;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 192px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf9, #f7fff9);
}

.chart-bars span {
  flex: 1;
  min-width: 22px;
  border-radius: 8px 8px 0 0;
  background: var(--green);
}

.chart-bars span:nth-child(even) {
  background: var(--orange);
}

.ab-test-panel {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #ffd9c2;
  border-radius: 8px;
  background: var(--cream);
}

.ab-test-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ab-test-panel span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ab-test-panel strong {
  color: var(--text);
  font-size: 18px;
  text-align: right;
}

.ab-test-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.segment-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.segment-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.segment-list strong {
  margin-left: auto;
  color: var(--text);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.green {
  background: var(--green);
}

.dot.orange {
  background: var(--orange);
}

.dot.yellow {
  background: var(--yellow);
}

.shopify-card {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 48px;
  align-items: center;
  padding: 54px;
  border: 1px solid #ffd9c2;
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 0, rgba(41, 205, 87, 0.15) 0 150px, transparent 152px),
    linear-gradient(135deg, #fff, var(--cream));
  box-shadow: var(--shadow);
}

.shopify-card p {
  max-width: 760px;
  margin-bottom: 0;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(42, 45, 52, 0.05);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 20px;
  font-weight: 800;
}

details p {
  padding: 0 24px 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 34px;
  padding: 26px 0 0;
  border-top: 1px solid #d8d0cb;
  color: var(--muted);
}

.site-footer .brand {
  color: var(--text);
  font-size: 24px;
}

.site-footer .brand-mark {
  width: 34px;
  height: 34px;
}

.site-footer p {
  margin: 0;
}

.site-footer a:last-child {
  color: var(--orange);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero,
  .results {
    grid-template-columns: 1fr;
  }

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

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

  .flow-panel {
    grid-template-columns: 1fr;
  }

  .shopify-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .section-shell,
  .proof-strip,
  .site-header,
  .site-footer {
    width: min(100% - 32px, 1280px);
  }

  .site-header {
    position: static;
    margin-top: 16px;
    padding: 16px;
  }

  .brand {
    font-size: 24px;
  }

  .nav-links {
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-cta {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .hero {
    gap: 36px;
    padding-top: 48px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-lede {
    font-size: 20px;
  }

  .hero-actions,
  .hero-stats,
  .metric-row,
  .template-gallery,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 42px;
  }

  .hero-stats div {
    grid-template-columns: 96px 1fr;
  }

  .hero-stats div + div {
    padding-left: 0;
    border-left: 0;
  }

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

  .hero-pets {
    top: 42px;
    right: 26px;
    left: 26px;
    width: auto;
    height: 310px;
  }

  .popup-preview {
    top: 330px;
    left: 22px;
    width: calc(100% - 44px);
  }

  .chip-left {
    left: 22px;
  }

  .chip-right {
    right: 20px;
  }

  .popup-media-row {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }

  .popup-media-row img {
    width: 80px;
    height: 80px;
  }

  .popup-media-row h2 {
    font-size: 34px;
  }

  .choice-row {
    grid-template-columns: 1fr;
  }

  .gallery-section,
  .personalization,
  .results,
  .shopify-section,
  .faq,
  .feature-grid {
    margin-bottom: 78px;
  }

  .section-intro h2,
  .section-heading h2,
  .results-copy h2,
  .shopify-card h2 {
    font-size: 38px;
  }

  .section-intro p,
  .section-heading p,
  .results-copy p,
  .shopify-card p {
    font-size: 18px;
  }

  .shopify-card {
    padding: 32px 22px;
  }

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