:root {
  --peach: #ff9b78;
  --peach-light: #ffe6dc;
  --peach-pale: #fff6f1;
  --cream: #f8f4ed;
  --ink: #121110;
  --muted: #6d6964;
  --line: #ded9d1;
  --white: #fff;
  --font-geist-sans: "Open Sans", "Segoe UI", Arial, sans-serif;
  --font-geist-mono: "Cascadia Mono", "Consolas", monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(255, 155, 120, .72);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1340px, calc(100% - 48px));
  height: 92px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(18, 17, 16, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.brand-mark {
    display: block;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--ink);
}

    .brand-mark img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.brand-mark + span {
  letter-spacing: -0.03em;
}

.desktop-nav {
  display: flex;
  gap: 31px;
  color: #37332f;
  font-size: 14px;
}

.desktop-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--peach);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 13px 19px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:hover {
  background: #302c29;
}

.hero {
  min-height: 820px;
  padding-top: 166px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
  color: #4b4743;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 640;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 27px;
  height: 1px;
  background: var(--peach);
}

.hero h1,
.section-heading h2,
.strip-grid h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(54px, 5.4vw, 82px);
}

.hero h1 em {
  color: var(--peach);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 595px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 53px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 680;
  transition: transform 180ms ease, background 180ms ease;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #302c29;
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  color: #85807a;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.hero-proof i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--peach);
}

.hero-art {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 150px 30px 110px 30px;
  background: linear-gradient(145deg, #ffc0a7 0%, #ff9975 52%, #e87956 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}

.peach-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
}

.orbit-one {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -120px;
}

.orbit-two {
  width: 300px;
  height: 300px;
  bottom: -170px;
  left: -100px;
}

.browser-window {
  position: relative;
  z-index: 2;
  width: 77%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 17px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 34px 80px rgba(74, 31, 17, .28);
  transform: rotate(-4deg) translateY(-4px);
  backdrop-filter: blur(12px);
}

.browser-top {
  height: 38px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #e8e2dc;
  background: #fff;
}

.browser-top > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ded8d2;
}

.browser-top > div {
  width: 40%;
  height: 13px;
  margin-left: 20px;
  border-radius: 10px;
  background: #f5f1ec;
}

.browser-body {
  height: 290px;
  display: grid;
  grid-template-columns: 90px 1fr;
}

.mini-sidebar {
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #171513;
}

.mini-sidebar b {
  margin-bottom: 13px;
  color: var(--peach);
  font-size: 10px;
}

.mini-sidebar span {
  display: block;
  width: 48px;
  height: 6px;
  border-radius: 4px;
  background: #3f3a36;
}

.mini-sidebar span.active {
  width: 60px;
  height: 22px;
  background: rgba(255,155,120,.25);
}

.mini-dashboard {
  padding: 27px 23px;
}

.mini-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-heading span {
  width: 90px;
  height: 12px;
  border-radius: 6px;
  background: #201d1a;
}

.mini-heading b {
  width: 50px;
  height: 20px;
  border-radius: 10px;
  background: var(--peach);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 25px;
}

.mini-stats span {
  height: 50px;
  border: 1px solid #e9e4de;
  border-radius: 9px;
  background: #fff;
}

.mini-stats span:nth-child(2) {
  background: var(--peach-light);
}

.mini-table {
  margin-top: 16px;
  padding: 17px;
  border: 1px solid #e9e4de;
  border-radius: 10px;
}

.mini-table b,
.mini-table span {
  display: block;
  height: 6px;
  border-radius: 4px;
  background: #e9e4de;
}

.mini-table b { width: 60px; margin-bottom: 16px; background: #6a645e; }
.mini-table span { margin-top: 11px; }
.mini-table span:nth-child(odd) { width: 72%; }

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 13px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 45px rgba(77, 34, 20, .19);
}

.floating-card div { display: flex; flex-direction: column; gap: 3px; }
.floating-card b { font-size: 11px; }
.floating-card small { color: #8b837d; font-size: 8px; }
.card-database { bottom: 64px; left: 28px; }
.card-success { top: 76px; right: 22px; }
.card-success > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--peach);
  font-size: 12px;
}

.database-icon {
  width: 26px;
  height: 28px;
  border: 2px solid var(--peach);
  border-radius: 50% / 18%;
  background: var(--peach-light);
}

.company-strip {
  padding: 98px 0 104px;
  background: var(--ink);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: .62fr 1.35fr 1fr;
  gap: 60px;
  align-items: start;
}

.eyebrow-light { color: #aaa29a; }

.strip-grid h2 {
  max-width: 520px;
  font-size: clamp(42px, 4vw, 60px);
}

.company-copy {
  padding-top: 4px;
  color: #aaa49d;
  font-size: 15px;
  line-height: 1.72;
}

.company-copy p { margin: 0 0 20px; }

.offers {
  padding-top: 135px;
  padding-bottom: 140px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .58fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.about-copy h2 {
  max-width: 800px;
  font-size: clamp(46px, 5.2vw, 72px);
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.offer-list {
  border-top: 1px solid var(--line);
}

.offer-row {
  min-height: 142px;
  display: grid;
  grid-template-columns: 55px minmax(240px, 1fr) minmax(270px, .9fr) 145px 42px;
  gap: 25px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.offer-row:hover {
  padding-inline: 17px;
  background: var(--peach-light);
}

.offer-number {
  color: #a8a19a;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.offer-main small,
.showcase-content small {
  color: #8b857f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-main h3 {
  margin: 9px 0 0;
  font-size: 22px;
  font-weight: 630;
  letter-spacing: -.035em;
}

.offer-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.offer-row > strong {
  font-size: 15px;
  text-align: right;
}

.offer-arrow {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid #cfc9c2;
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}

.offer-row:hover .offer-arrow {
  background: var(--ink);
  color: var(--white);
}

.showcases {
  padding: 133px 0 145px;
  background: #fff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.showcase-card {
  border: 1px solid #e7e2dc;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(41, 29, 21, .09);
}

.showcase-visual {
  position: relative;
  height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.showcase-beauty { background: linear-gradient(145deg, #efc0ab, #fbdfd1); }
.showcase-admin { background: #22201e; }
.showcase-checkout { background: #e8e1d8; }

.visual-index {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.showcase-admin .visual-index { color: #fff; }

.mock-screen {
  width: 72%;
  height: 68%;
  padding: 24px;
  border: 7px solid rgba(255,255,255,.7);
  border-radius: 14px;
  background: rgba(255,255,255,.87);
  box-shadow: 0 23px 45px rgba(55, 35, 24, .18);
  transform: rotate(-5deg);
}

.showcase-admin .mock-screen {
  border-color: #423e3a;
  background: #f7f2ec;
  transform: rotate(3deg);
}

.showcase-checkout .mock-screen {
  width: 55%;
  border-radius: 20px;
  transform: rotate(-2deg);
}

.mock-screen i {
  display: block;
  width: 80%;
  height: 14px;
  margin: 14px 0;
  border-radius: 8px;
  background: #ded7d0;
}

.mock-screen i:first-child {
  width: 50%;
  height: 37px;
  background: var(--peach);
}

.mock-screen i:last-child { width: 62%; }

.visual-pill {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.showcase-content { padding: 27px 27px 30px; }

.showcase-content h3 {
  min-height: 57px;
  margin: 11px 0 13px;
  font-size: 24px;
  font-weight: 620;
  letter-spacing: -.04em;
  line-height: 1.18;
}

.showcase-content p {
  min-height: 63px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.showcase-content > span {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid #e9e4df;
  font-size: 12px;
  font-weight: 650;
}

.about { padding-top: 140px; padding-bottom: 140px; }

.about-card {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  min-height: 570px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--peach-light);
}

.about-portrait {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0d141c;
}

.about-portrait-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-copy {
  padding: 75px clamp(45px, 7vw, 95px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2 { font-size: clamp(43px, 4.6vw, 66px); }

.about-lead {
  max-width: 670px;
  margin: 30px 0;
  color: #675f59;
  font-size: 17px;
  line-height: 1.7;
}

.about-points {
  display: grid;
  gap: 11px;
}

.about-points span {
  display: flex;
  gap: 15px;
  padding: 12px 0;
  border-top: 1px solid rgba(18,17,16,.15);
  font-size: 13px;
}

.about-points b {
  color: #b65f42;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.contact {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr .72fr;
  gap: 110px;
  align-items: center;
}

.contact h2 {
  max-width: 800px;
  font-size: clamp(52px, 6vw, 84px);
}

.contact-panel {
  padding-left: 34px;
  border-left: 1px solid #3a3734;
}

.contact-panel p {
  margin: 0 0 30px;
  color: #aaa49e;
  font-size: 15px;
  line-height: 1.7;
}

.button-peach {
  background: var(--peach);
  color: var(--ink);
}

.button-peach:hover { background: #ffb092; }

.contact-panel small {
  display: block;
  margin-top: 20px;
  color: #77716c;
  font-size: 10px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid #302d2a;
  background: var(--ink);
  color: #8d8781;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.brand-light { color: #fff; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 480px; }
  .strip-grid { grid-template-columns: 1fr 1.5fr; }
  .strip-grid .eyebrow { grid-column: 1 / -1; }
  .offer-row { grid-template-columns: 45px 1fr 120px 42px; }
  .offer-row > p { display: none; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-card:last-child { grid-column: 1 / -1; }
  .about-card { grid-template-columns: .62fr 1.38fr; }
  .contact-grid { gap: 60px; }
}

@media (max-width: 720px) {
  .section-shell { width: min(100% - 30px, 1240px); }
  .site-header { width: calc(100% - 30px); height: 76px; }
  .header-cta { padding: 11px 14px; font-size: 0; }
  .header-cta span { font-size: 14px; }
  .hero { min-height: auto; padding-top: 125px; padding-bottom: 65px; gap: 45px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-proof { flex-wrap: wrap; margin-top: 35px; }
  .hero-art { min-height: 350px; border-radius: 80px 20px 70px 20px; }
  .browser-window { width: 88%; }
  .browser-body { height: 210px; grid-template-columns: 66px 1fr; }
  .mini-sidebar { padding: 17px 9px; }
  .mini-sidebar span { width: 35px; }
  .mini-sidebar span.active { width: 45px; }
  .mini-dashboard { padding: 20px 14px; }
  .floating-card { transform: scale(.82); }
  .card-database { bottom: 18px; left: -8px; }
  .card-success { top: 42px; right: -10px; }
  .company-strip { padding: 75px 0; }
  .strip-grid { grid-template-columns: 1fr; gap: 30px; }
  .strip-grid .eyebrow { grid-column: auto; }
  .strip-grid h2 { font-size: 45px; }
  .offers, .showcases, .about { padding-top: 90px; padding-bottom: 90px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 45px; }
  .section-heading h2 { font-size: 46px; }
  .offer-row {
    min-height: 160px;
    grid-template-columns: 31px 1fr 35px;
    gap: 12px;
    padding: 18px 0;
  }
  .offer-row > strong { grid-column: 2; grid-row: 2; text-align: left; }
  .offer-arrow { grid-column: 3; grid-row: 1 / 3; }
  .offer-main h3 { font-size: 19px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card:last-child { grid-column: auto; }
  .showcase-visual { height: 275px; }
  .about-card { grid-template-columns: 1fr; }
  .about-portrait { min-height: 290px; }
  .about-copy { padding: 50px 27px; }
  .about-copy h2 { font-size: 44px; }
  .contact { padding: 90px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact h2 { font-size: 50px; }
  .contact-panel { padding: 30px 0 0; border-left: 0; border-top: 1px solid #3a3734; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

.hero-generated {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.showcase-card:hover .showcase-visual > img {
  transform: scale(1.035);
}

.showcase-visual:has(> img)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 17, 16, .24));
  pointer-events: none;
}

.showcase-visual:has(> img) .visual-index,
.showcase-visual:has(> img) .visual-pill {
  z-index: 2;
}

.showcase-visual:has(> img) .visual-index {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(7px);
}

/* Pages solutions */
.offer-page {
  min-height: 100vh;
  background: var(--cream);
}

.offer-header {
  width: min(1340px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(18, 17, 16, .14);
}

.offer-header .header-cta {
  justify-self: end;
}

.back-link {
  padding-bottom: 4px;
  border-bottom: 1px solid #aaa39d;
  color: #5e5954;
  font-size: 12px;
}

.offer-hero {
  padding-top: 92px;
  padding-bottom: 110px;
}

.offer-breadcrumb {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  color: #756f69;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.offer-breadcrumb span:first-child {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #d8d1ca;
  border-radius: 50%;
  color: var(--ink);
}

.offer-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(64px, 7.5vw, 112px);
  font-weight: 540;
  letter-spacing: -.075em;
  line-height: .94;
}

.offer-intro-grid {
  display: grid;
  grid-template-columns: 1.25fr .55fr;
  gap: 100px;
  align-items: end;
  margin-top: 65px;
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.offer-intro-grid > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.offer-intro-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.offer-intro-grid small,
.demo-toolbar small,
.payment-demo small,
.email-demo small,
.sms-demo small,
.account-demo small,
.admin-demo small,
.next-offer small {
  color: #8a837c;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-intro-grid strong {
  font-size: 28px;
  letter-spacing: -.04em;
}

.demo-section {
  padding: 112px 0 120px;
  background: var(--ink);
  color: var(--white);
}

.demo-heading {
  display: grid;
  grid-template-columns: 1.3fr .55fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 55px;
}

.demo-heading .eyebrow {
  color: #aaa39d;
}

.demo-heading h2,
.offer-details h2,
.next-offer h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(47px, 5vw, 71px);
  font-weight: 550;
  letter-spacing: -.065em;
  line-height: 1;
}

.demo-heading > p {
  margin: 0;
  color: #99928c;
  font-size: 14px;
  line-height: 1.7;
}

.demo-surface,
.demo-browser {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid #3d3935;
  border-radius: 25px;
  background: #f8f4ee;
  color: var(--ink);
  box-shadow: 0 45px 90px rgba(0, 0, 0, .25);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.demo-browser-bar {
  height: 47px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #e2dbd4;
  background: #fff;
}

.demo-browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8d0c9;
}

.demo-browser-bar span {
  width: 38%;
  margin: 0 auto;
  padding: 6px;
  border-radius: 7px;
  background: #f2eee9;
  color: #938b84;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  text-align: center;
}

.beauty-site {
  min-height: 490px;
  padding: 35px 45px 45px;
  background:
    linear-gradient(90deg, rgba(255, 246, 239, .94) 0 57%, rgba(255, 246, 239, .24) 73%),
    url('/images/showcase-demo.webp') center / cover;
}

.beauty-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.beauty-nav strong {
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.beauty-nav > div {
  display: flex;
  gap: 7px;
}

.beauty-nav button {
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #716a64;
  font-size: 10px;
}

.beauty-nav button.selected {
  background: #fff;
  color: var(--ink);
}

.beauty-content {
  max-width: 520px;
  padding-top: 96px;
}

.beauty-content small {
  color: #9b6d5d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.beauty-content h3 {
  max-width: 520px;
  margin: 17px 0 19px;
  font-family: Georgia, serif;
  font-size: clamp(44px, 5vw, 67px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.beauty-content p {
  max-width: 400px;
  color: #6d625b;
  font-size: 14px;
  line-height: 1.65;
}

.beauty-content button {
  margin-top: 12px;
  padding: 13px 17px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
}

.beauty-content button span { margin-left: 18px; }

/* CRUD */
.crud-demo { padding: 42px; }

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-toolbar h3,
.email-controls h3,
.sms-controls h3 {
  margin: 8px 0 0;
  font-size: 31px;
  letter-spacing: -.045em;
}

.demo-toolbar > span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--peach-light);
  color: #a75135;
  font-size: 10px;
  font-weight: 650;
}

.quick-add {
  margin: 35px 0 23px;
  padding: 19px;
  border: 1px solid #e2dbd4;
  border-radius: 13px;
  background: #fff;
}

.quick-add label {
  display: block;
  margin-bottom: 9px;
  color: #736d67;
  font-size: 10px;
  font-weight: 650;
}

.quick-add > div { display: flex; gap: 9px; }
.quick-add input,
.email-controls input,
.login-card input {
  width: 100%;
  min-height: 43px;
  padding: 0 13px;
  border: 1px solid #ddd5ce;
  border-radius: 9px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}

.quick-add input:focus,
.email-controls input:focus,
.login-card input:focus,
.sms-controls textarea:focus {
  border-color: var(--peach);
  box-shadow: 0 0 0 3px rgba(255, 155, 120, .14);
}

.quick-add button,
.email-controls button,
.sms-controls button,
.login-card button {
  min-width: 115px;
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 650;
}

.client-table {
  overflow: hidden;
  border: 1px solid #e2dbd4;
  border-radius: 13px;
  background: #fff;
}

.client-row {
  min-height: 62px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr .55fr 90px;
  align-items: center;
  border-top: 1px solid #eee8e2;
  font-size: 12px;
}

.client-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.client-row i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--peach-light);
  color: #a24c31;
  font-size: 9px;
  font-style: normal;
}

.client-row b {
  padding: 6px 8px;
  border-radius: 999px;
  background: #e9f4ec;
  color: #3c7750;
  font-size: 9px;
}

.client-row b.status-warn {
  background: #fff1d8;
  color: #9a671b;
}

.client-row button {
  border: 0;
  background: transparent;
  color: #9f6756;
  font-size: 9px;
}

.client-row.table-head {
  min-height: 35px;
  border-top: 0;
  background: #f4f0eb;
  color: #928b84;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.client-row.table-head span:first-child { font-weight: 400; }

/* Paiement */
.payment-demo {
  padding: 55px;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 75px;
  align-items: center;
}

.payment-product h3 {
  margin: 14px 0 30px;
  font-size: 49px;
  font-weight: 570;
  letter-spacing: -.06em;
}

.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.plan-grid button {
  min-height: 115px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid #dcd4cd;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

.plan-grid button.active {
  border-color: var(--peach);
  background: var(--peach-light);
  box-shadow: inset 0 0 0 1px var(--peach);
}

.plan-grid span { font-size: 11px; }
.plan-grid b { font-size: 25px; }

.payment-summary {
  min-height: 390px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #e1d9d2;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(36, 27, 22, .08);
}

.payment-summary [data-payment-form] {
  display: flex;
  flex-direction: column;
}

.payment-summary [data-payment-form] > div {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee8e2;
  color: #625c56;
  font-size: 12px;
}

.payment-summary [data-payment-form] > .payment-total {
  padding: 23px 0;
  color: var(--ink);
  font-size: 16px;
}

.payment-summary [data-payment-form] > p {
  margin: 15px 0 0;
  color: #918a83;
  font-size: 9px;
  text-align: center;
}

.payment-summary > div:not(.payment-success):not([data-payment-form]) {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee8e2;
  color: #625c56;
  font-size: 12px;
}

.payment-summary .payment-total { padding: 23px 0; color: var(--ink); font-size: 16px; }
.pay-button {
  min-height: 49px;
  margin-top: 18px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 650;
}

.payment-summary > p { margin: 15px 0 0; color: #918a83; font-size: 9px; text-align: center; }
.payment-success { text-align: center; }
.payment-success > span { display: grid; width: 55px; height: 55px; margin: 0 auto 20px; place-items: center; border-radius: 50%; background: var(--peach-light); color: #9d4b32; font-size: 22px; }
.payment-success h3 { margin: 0; font-size: 26px; }
.payment-success p { color: #827b74; font-size: 12px; }
.payment-success button { padding: 10px 14px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; font-size: 10px; }

/* Email */
.email-demo {
  padding: 45px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 45px;
}

.email-controls {
  padding: 28px;
  border-radius: 17px;
  background: var(--peach-light);
}

.email-controls label,
.sms-controls label,
.login-card label {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: #6d655f;
  font-size: 10px;
  font-weight: 650;
}

.email-controls button { width: 100%; min-height: 44px; margin-top: 25px; }
.email-preview { overflow: hidden; border: 1px solid #e2dbd4; border-radius: 17px; background: #ebe5df; }
.email-meta { padding: 14px 19px; display: flex; flex-direction: column; gap: 5px; border-bottom: 1px solid #ddd5ce; background: #fff; color: #8a827b; font-size: 9px; }
.email-meta b { color: var(--ink); font-size: 11px; }
.email-paper { width: 79%; min-height: 365px; margin: 27px auto; padding: 42px; background: #fff; box-shadow: 0 14px 35px rgba(42, 31, 25, .1); }
.email-logo { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px 18px 14px 18px; background: var(--peach); font-weight: 760; }
.email-paper h3 { margin: 30px 0 15px; font-family: Georgia, serif; font-size: 29px; font-weight: 400; }
.email-paper p { color: #68615b; font-size: 12px; line-height: 1.7; }
.email-paper button { margin-top: 17px; padding: 12px 15px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font-size: 9px; }

/* SMS */
.sms-demo { padding: 45px 80px; display: grid; grid-template-columns: 1fr .72fr; gap: 100px; align-items: center; }
.sms-controls textarea { min-height: 130px; padding: 13px; resize: vertical; border: 1px solid #dcd4cd; border-radius: 10px; outline: none; background: #fff; color: var(--ink); font-size: 12px; line-height: 1.55; }
.sms-controls > div { margin-top: 11px; display: flex; align-items: center; justify-content: space-between; }
.sms-controls > div span { color: #89827b; font-size: 9px; }
.sms-controls button { min-height: 40px; padding: 0 14px; }
.phone-shell { position: relative; min-height: 430px; padding: 47px 21px 24px; border: 9px solid #171513; border-radius: 38px; background: #f2eee9; box-shadow: 0 25px 50px rgba(28, 20, 16, .2); }
.phone-notch { position: absolute; top: 8px; left: 50%; width: 82px; height: 19px; transform: translateX(-50%); border-radius: 999px; background: #171513; }
.phone-shell > small { display: block; margin-bottom: 38px; color: #918a83; font-size: 8px; text-align: center; }
.sms-bubble { margin-left: 17%; padding: 14px; border-radius: 18px 18px 4px 18px; background: var(--peach); font-size: 11px; line-height: 1.55; }
.phone-shell > span { display: block; margin-top: 10px; color: #9a938c; font-size: 8px; text-align: right; }

/* Comptes */
.account-demo { display: grid; grid-template-columns: 1fr 1fr; }
.account-visual { min-height: 520px; padding: 60px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(145deg, #ffb99f, #ff8d66); }
.account-visual > span { display: grid; width: 57px; height: 57px; place-items: center; border-radius: 16px 27px 21px 27px; background: var(--ink); color: var(--peach); font-weight: 750; }
.account-visual h3 { max-width: 350px; margin: 24px 0 12px; font-size: 45px; letter-spacing: -.055em; }
.account-visual p { max-width: 370px; margin: 0; color: #72412f; font-size: 13px; line-height: 1.6; }
.login-card,
.profile-card { width: min(380px, calc(100% - 60px)); margin: auto; }
.login-card h3,
.profile-card h3 { margin: 10px 0 25px; font-size: 35px; letter-spacing: -.05em; }
.login-card button { width: 100%; min-height: 47px; margin-top: 25px; }
.login-card > p { color: #928b85; font-size: 9px; text-align: center; }
.profile-card { text-align: center; }
.profile-avatar { display: grid; width: 75px; height: 75px; margin: 18px auto; place-items: center; border-radius: 50%; background: var(--peach-light); color: #a45137; font-size: 25px; font-weight: 700; }
.profile-card h3 { margin: 0 0 5px; }
.profile-card > p { color: #867f78; font-size: 11px; }
.profile-card > div { margin: 25px 0; padding: 18px; display: flex; flex-direction: column; gap: 6px; border-radius: 13px; background: #fff; }
.profile-card > div span { color: #888079; font-size: 9px; }
.profile-card > div b { font-size: 13px; }
.profile-card button { border: 0; border-bottom: 1px solid #77706a; background: transparent; color: #77706a; font-size: 9px; }

/* Admin */
.admin-demo { display: grid; grid-template-columns: 210px 1fr; }
.admin-demo aside { padding: 28px 17px; display: flex; flex-direction: column; gap: 8px; background: #171513; color: #fff; }
.admin-demo aside strong { margin: 0 8px 30px; display: flex; align-items: center; gap: 10px; font-size: 12px; }
.admin-demo aside strong span { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 8px 13px 10px 13px; background: var(--peach); color: var(--ink); }
.admin-demo aside button { padding: 12px 14px; border: 0; border-radius: 8px; background: transparent; color: #98918a; font-size: 10px; text-align: left; }
.admin-demo aside button.active { background: rgba(255, 155, 120, .18); color: var(--peach); }
.admin-content { padding: 38px; }
.admin-heading { display: flex; align-items: center; justify-content: space-between; }
.admin-heading h3 { margin: 7px 0 0; font-size: 30px; letter-spacing: -.045em; }
.admin-heading > span { padding: 8px 10px; border-radius: 999px; background: #fff; color: #716a64; font-size: 9px; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.admin-stats > div { min-height: 135px; padding: 18px; display: flex; flex-direction: column; border: 1px solid #e1dad3; border-radius: 13px; background: #fff; }
.admin-stats b { margin-top: 25px; font-size: 16px; }
.admin-stats i { height: 4px; margin-top: auto; border-radius: 4px; background: var(--peach); }
.admin-activity { margin-top: 18px; padding: 21px; border: 1px solid #e1dad3; border-radius: 13px; background: #fff; }
.admin-activity > strong { display: block; margin-bottom: 13px; font-size: 12px; }
.admin-activity > span { padding: 12px 0; display: flex; align-items: center; gap: 10px; border-top: 1px solid #eee8e2; color: #68615b; font-size: 10px; }
.admin-activity > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--peach); }
.admin-activity > span b { margin-left: auto; color: #aaa29b; font-size: 8px; font-weight: 400; }

.offer-details {
  padding-top: 130px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: 1fr .75fr .75fr;
  gap: 70px;
  align-items: start;
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-list div {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.benefit-list span {
  color: #9a938c;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.benefit-list strong { font-size: 15px; }

.included-card {
  padding: 31px;
  display: grid;
  gap: 16px;
  border-radius: 20px;
  background: var(--peach-light);
}

.included-card small {
  margin-bottom: 12px;
  color: #92533d;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.included-card span {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(121, 69, 51, .15);
  font-size: 12px;
}

.next-offer {
  padding: 80px 0;
  background: var(--peach);
}

.next-offer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.next-offer h2 { margin-top: 15px; }
.next-offer a { display: flex; align-items: center; gap: 18px; font-size: 12px; font-weight: 650; }
.next-offer a b { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: 18px; }

@media (max-width: 900px) {
  .offer-header { grid-template-columns: 1fr 1fr; }
  .offer-header .back-link { display: none; }
  .offer-intro-grid,
  .demo-heading { grid-template-columns: 1fr; gap: 30px; }
  .offer-intro-grid > div { align-items: flex-start; }
  .payment-demo,
  .email-demo,
  .sms-demo { grid-template-columns: 1fr; gap: 35px; }
  .sms-demo { padding-inline: 45px; }
  .phone-shell { width: min(330px, 100%); margin: auto; }
  .offer-details { grid-template-columns: 1fr 1fr; }
  .offer-details > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .offer-header { width: calc(100% - 30px); height: 76px; }
  .offer-header .header-cta { padding: 11px 14px; font-size: 0; }
  .offer-header .header-cta span { font-size: 14px; }
  .offer-hero { padding-top: 65px; padding-bottom: 75px; }
  .offer-hero h1 { font-size: clamp(55px, 16vw, 80px); }
  .offer-intro-grid { margin-top: 45px; }
  .offer-intro-grid > p { font-size: 16px; }
  .demo-section { padding: 78px 0; }
  .demo-heading { margin-bottom: 38px; }
  .demo-heading h2,
  .offer-details h2 { font-size: 44px; }
  .demo-surface,
  .demo-browser { min-height: 450px; border-radius: 18px; }
  .beauty-site { min-height: 520px; padding: 25px; background: linear-gradient(90deg, rgba(255, 246, 239, .94), rgba(255, 246, 239, .66)), url('/images/showcase-demo.webp') center / cover; }
  .beauty-nav { align-items: flex-start; gap: 15px; flex-direction: column; }
  .beauty-nav > div { flex-wrap: wrap; }
  .beauty-content { padding-top: 70px; }
  .beauty-content h3 { font-size: 45px; }
  .crud-demo { padding: 25px 17px; }
  .quick-add > div { flex-direction: column; }
  .quick-add button { min-height: 41px; }
  .client-row { grid-template-columns: 1fr 75px; padding: 0 11px; }
  .client-row > span:nth-child(2) { display: none; }
  .client-row.table-head span:nth-child(2) { display: none; }
  .payment-demo,
  .email-demo,
  .sms-demo { padding: 25px 17px; }
  .payment-product h3 { font-size: 39px; }
  .payment-summary { padding: 23px; }
  .plan-grid { grid-template-columns: 1fr; }
  .email-paper { width: 90%; padding: 25px; }
  .phone-shell { min-height: 410px; }
  .account-demo { grid-template-columns: 1fr; }
  .account-visual { min-height: 300px; padding: 35px; }
  .account-visual h3 { font-size: 37px; }
  .login-card,
  .profile-card { padding: 45px 0; }
  .admin-demo { grid-template-columns: 1fr; }
  .admin-demo aside { padding: 15px; display: flex; overflow-x: auto; flex-direction: row; }
  .admin-demo aside strong { display: none; }
  .admin-demo aside button { white-space: nowrap; }
  .admin-content { padding: 25px 17px; }
  .admin-heading > span { display: none; }
  .admin-stats { grid-template-columns: 1fr; }
  .offer-details { padding-top: 85px; padding-bottom: 90px; grid-template-columns: 1fr; gap: 45px; }
  .offer-details > div:first-child { grid-column: auto; }
  .next-offer-inner { align-items: flex-start; flex-direction: column; gap: 35px; }
  .next-offer h2 { font-size: 45px; }
}

.error-page {
  min-height: 100vh;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.error-page h1 {
  max-width: 850px;
  margin: 70px 0 20px;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 560;
  letter-spacing: -.065em;
  line-height: .98;
}

.error-page p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
}
