:root {
  --ink: #080807;
  --black: #050504;
  --cream: #f8f3ec;
  --paper: #fffdf9;
  --muted: #6d6258;
  --gold: #c58a45;
  --gold-light: #e4b06f;
  --line: rgba(197, 138, 69, 0.35);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: #fff;
  background:
    radial-gradient(circle at 64% 45%, rgba(197, 138, 69, 0.25), transparent 34%),
    linear-gradient(90deg, #060605 0%, #070706 38%, rgba(6, 6, 5, 0.88) 56%, rgba(6, 6, 5, 0.58) 100%);
}

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 24px 0 18px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border: 2px solid var(--gold);
  clip-path: polygon(50% 4%, 96% 92%, 4% 92%);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid var(--gold);
  clip-path: polygon(50% 4%, 96% 92%, 4% 92%);
}

.nav-links {
  display: flex;
  gap: 46px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, #efc17f, #b87734);
  color: #fff;
  box-shadow: 0 15px 35px rgba(197, 138, 69, 0.28);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(5, 5, 4, 0.32);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  align-items: center;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  min-height: 620px;
}

.hero-copy {
  max-width: 560px;
  padding-bottom: 48px;
}

.hero h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
}

.hero h1 {
  font-size: clamp(64px, 7vw, 104px);
}

.hero h1 span,
.final-cta span {
  color: var(--gold-light);
}

.subtitle {
  max-width: 520px;
  margin: 28px 0 14px;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.18;
  font-weight: 800;
}

.lead {
  max-width: 510px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.button-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 480px;
  margin: 34px 0 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
}

.trust-line span {
  flex: 0 0 34px;
  color: var(--gold-light);
}

.trust-line svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

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

.hero-photo {
  position: absolute;
  inset: -70px -110px 0 auto;
  width: 940px;
  height: 710px;
  object-fit: cover;
  object-position: 82% 4%;
  opacity: 0.72;
  filter: contrast(1.08) saturate(1.05);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
}

.phone {
  position: absolute;
  border: 4px solid #1c1b1a;
  border-radius: 34px;
  background: #090908;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 27px;
  pointer-events: none;
}

.phone-top {
  width: 74px;
  height: 7px;
  margin: 15px auto 0;
  background: #1a1a18;
  border-radius: 999px;
}

.phone-front {
  width: 235px;
  height: 460px;
  right: 210px;
  bottom: 45px;
  z-index: 3;
  padding: 38px 28px 22px;
  text-align: center;
}

.app-logo {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 0.8;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.app-logo span {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 3px;
}

.app-headline {
  margin: 64px 0 28px;
  color: #f4c57b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.08;
  text-transform: uppercase;
}

.app-button,
.app-link,
.time {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.app-button {
  background: linear-gradient(135deg, #e5ad69, #ad6f31);
}

.app-link {
  margin-top: 11px;
  border: 1px solid var(--gold);
}

.tabbar {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
}

.tabbar i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-light);
}

.phone-back {
  width: 230px;
  height: 430px;
  right: 35px;
  bottom: 58px;
  z-index: 2;
  background: #f9f6f2;
  color: #16110d;
  padding: 32px 24px 20px;
}

.calendar-title {
  margin: 14px 0 18px;
  font-weight: 900;
  text-align: center;
}

.calendar {
  text-align: center;
  font-size: 12px;
}

.days,
.dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin-top: 13px;
}

.dates span {
  height: 22px;
  border-radius: 50%;
}

.dates .active {
  background: #111;
  color: #fff;
}

.time {
  height: 38px;
  margin-top: 11px;
  border: 1px solid #eee1d3;
  background: #fff;
  color: #201813;
}

.time.selected {
  border-color: var(--gold);
  color: var(--gold);
}

.features,
.benefits {
  background: var(--paper);
}

.section-heading {
  text-align: center;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 28px;
}

.section-heading h2 {
  font-size: clamp(34px, 3.7vw, 54px);
}

.section-heading p {
  margin: 12px 0 0;
  font-size: 18px;
}

.compact {
  padding-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.compact h2 {
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

.compact::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--gold);
}

.feature-grid,
.benefits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
}

.feature-card,
.benefit-item {
  min-height: 230px;
  padding: 34px 24px 26px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.feature-card:first-child,
.benefit-item:first-child {
  border-left: 0;
}

.feature-card h3,
.benefit-item h3 {
  margin: 14px auto 15px;
  max-width: 155px;
  font-size: 16px;
  line-height: 1.16;
}

.feature-card p,
.benefit-item p {
  margin: 0 auto;
  max-width: 150px;
  color: #16120e;
  font-size: 14px;
}

.icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  color: var(--gold);
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.calendar-icon { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3v4M17 3v4M4 9h16M5 5h14v16H5z'/%3E%3C/svg%3E"); }
.crown-icon { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3 7 5 5 4-8 4 8 5-5-2 12H5z'/%3E%3C/svg%3E"); }
.megaphone-icon { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 13h4l10 5V6L8 11H4zM8 13l2 6'/%3E%3C/svg%3E"); }
.card-icon { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='6' width='18' height='12' rx='1.5'/%3E%3Cpath d='M3 10h18M7 15h2M12 15h5'/%3E%3C/svg%3E"); }
.pin-icon { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s7-6 7-12a7 7 0 0 0-14 0c0 6 7 12 7 12z'/%3E%3Ccircle cx='12' cy='9' r='2.3'/%3E%3C/svg%3E"); }
.star-icon { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 3 2.8 5.8 6.2.9-4.5 4.4 1.1 6.2-5.6-3-5.6 3 1.1-6.2L3 9.7l6.2-.9z'/%3E%3C/svg%3E"); }
.tag-icon { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12V4h8l8 8-8 8z'/%3E%3Ccircle cx='8' cy='8' r='1'/%3E%3C/svg%3E"); }
.clock-icon { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v6l-4 2'/%3E%3C/svg%3E"); }
.chat-icon { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16v11H8l-4 4z'/%3E%3Cpath d='M8 10h.01M12 10h.01M16 10h.01'/%3E%3C/svg%3E"); }

.experience {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  min-height: 415px;
  padding: 54px max(48px, calc((100vw - 1260px) / 2));
  background:
    linear-gradient(90deg, rgba(248, 243, 236, 0.98), rgba(248, 243, 236, 0.85)),
    radial-gradient(circle at 77% 40%, rgba(228, 176, 111, 0.2), transparent 34%);
}

.experience-copy {
  padding-left: 48px;
}

.experience-copy h2,
.momentum-copy h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.momentum-copy h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.experience-copy h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 22px 0 20px;
  background: var(--gold);
}

.experience-copy p,
.momentum-copy p {
  max-width: 540px;
  margin: 0 0 16px;
  font-size: 17px;
}

.momentum-copy p {
  margin-left: auto;
  margin-right: auto;
}

.phone-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  min-height: 360px;
}

.mini-phone {
  width: 178px;
  height: 330px;
  padding: 25px 18px 16px;
  border: 4px solid #171615;
  border-radius: 26px;
  box-shadow: var(--shadow);
  text-align: center;
}

.mini-phone b {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 13px;
}

.mini-phone span {
  display: block;
  margin-bottom: 11px;
  padding: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-align: left;
}

.mini-phone small {
  display: block;
  color: var(--muted);
}

.mini-phone em {
  display: block;
  margin-top: 18px;
  padding: 12px 8px;
  border-radius: 4px;
  background: linear-gradient(135deg, #e5ad69, #ad6f31);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-phone.dark {
  height: 365px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.82)),
    url("assets/reference-hairsalon.png");
  background-size: 520px auto;
  background-position: 58% 4%;
  color: #fff;
}

.mini-phone.dark b {
  margin-top: 165px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.1;
}

.mini-phone.dark span {
  background: transparent;
  color: #fff;
  text-align: center;
}

.mini-phone.rewards {
  background: #0b0a09;
  color: #fff;
}

.mini-phone.rewards strong {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin: 42px auto 10px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  font-size: 40px;
}

.mini-phone.rewards span {
  text-align: center;
  background: transparent;
}

.benefits {
  padding: 28px 0 32px;
}

.benefit-item {
  min-height: 210px;
}

.momentum {
  display: grid;
  place-items: center;
  background: #fff;
}

.momentum-copy {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 56px;
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pricing {
  padding: 36px 0 34px;
  background: var(--paper);
}

.price-card {
  position: relative;
  display: grid;
  grid-template-columns: 250px 1fr 220px;
  gap: 32px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 28px auto 16px;
  padding: 34px 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.68);
}

.badge {
  position: absolute;
  left: 50%;
  top: -17px;
  transform: translateX(-50%);
  min-width: 330px;
  padding: 6px 20px;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.price-main {
  text-align: center;
}

.price-main p {
  margin: 0 0 14px;
  font-weight: 900;
}

.price-main strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1;
}

.price-main span,
.support-plan p {
  font-size: 13px;
  font-weight: 800;
}

.included {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 14px 34px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 800;
  font-size: 14px;
}

.included li {
  position: relative;
  padding-left: 26px;
}

.included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E");
  mask-size: contain;
}

.support-plan {
  padding: 36px 22px;
  text-align: center;
  background: linear-gradient(135deg, #fff, #eee9e3);
  border-radius: 4px;
}

.support-plan span {
  font-weight: 800;
}

.support-plan strong {
  display: block;
  margin: 8px 0;
  font-size: 38px;
}

.support-plan small {
  font-size: 14px;
}

.pricing-note {
  text-align: center;
  margin: 0;
  font-size: 16px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 22px;
  padding: 38px 24px 44px;
  background:
    radial-gradient(circle at 50% 0, rgba(197, 138, 69, 0.2), transparent 44%),
    #050504;
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  width: min(780px, 100%);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
}

.leaf {
  position: absolute;
  bottom: -35px;
  width: 185px;
  height: 185px;
  opacity: 0.46;
  background:
    linear-gradient(45deg, transparent 48%, #30542d 49%, #30542d 52%, transparent 53%),
    radial-gradient(ellipse at 72% 50%, transparent 40%, #30542d 41%, #30542d 43%, transparent 44%);
}

.leaf.left {
  left: 20px;
  transform: rotate(-20deg);
}

.leaf.right {
  right: 20px;
  transform: rotate(160deg);
}

.footer {
  padding: 18px 24px;
  background: #050504;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .hero-copy {
    max-width: 690px;
  }

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

  .hero-photo {
    inset: -40px -60px 0 auto;
    opacity: 0.48;
  }

  .phone-front {
    right: 310px;
  }

  .phone-back {
    right: 120px;
  }

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

  .feature-card:nth-child(4),
  .benefit-item:nth-child(4) {
    border-left: 0;
  }

  .price-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .included {
    width: min(650px, 100%);
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 820px) {
  .nav {
    width: min(100% - 34px, 1280px);
    flex-wrap: wrap;
    gap: 16px;
  }

  .brand {
    font-size: 20px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero-grid {
    width: min(100% - 34px, 1280px);
    min-height: auto;
  }

  .hero {
    min-height: 0;
  }

  .hero h1 {
    font-size: 58px;
  }

  .subtitle {
    font-size: 24px;
  }

  .lead {
    font-size: 16px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-visual {
    min-height: 390px;
    transform: scale(0.82);
    transform-origin: center top;
    margin-bottom: -60px;
  }

  .phone-front {
    right: 240px;
  }

  .phone-back {
    right: 50px;
  }

  .feature-grid,
  .benefits {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 24px, 720px);
  }

  .feature-card,
  .benefit-item,
  .feature-card:nth-child(4),
  .benefit-item:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .feature-card:nth-child(odd),
  .benefit-item:nth-child(odd) {
    border-left: 0;
  }

  .experience,
  .experience {
    padding: 42px 24px;
  }

  .experience-copy {
    padding-left: 0;
  }

  .phone-showcase {
    gap: 12px;
    overflow: hidden;
  }

  .mini-phone {
    width: 31vw;
    min-width: 132px;
    height: 285px;
    padding: 20px 12px;
  }

  .mini-phone.dark {
    height: 315px;
  }

  .mini-phone.dark b {
    margin-top: 130px;
    font-size: 16px;
  }

  .mini-phone.rewards strong {
    width: 90px;
    height: 90px;
    font-size: 30px;
  }

  .momentum-copy {
    width: min(100% - 48px, 920px);
    padding: 42px 0;
  }

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

  .badge {
    min-width: 250px;
    max-width: calc(100% - 24px);
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 48px;
  }

  .trust-line {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 300px;
    transform: scale(0.64);
    margin-left: -80px;
    margin-bottom: -115px;
  }

  .feature-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .benefit-item,
  .feature-card:nth-child(odd),
  .benefit-item:nth-child(odd) {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-card:first-child,
  .benefit-item:first-child {
    border-top: 0;
  }

  .phone-showcase {
    flex-direction: column;
    align-items: center;
  }

  .mini-phone,
  .mini-phone.dark {
    width: 210px;
    height: 330px;
  }

  .mini-phone.dark b {
    margin-top: 165px;
  }

  .price-card {
    width: min(100% - 24px, 1120px);
    padding: 38px 22px 24px;
  }

  .price-main strong {
    font-size: 44px;
  }
}
