@import "tailwindcss";

:root {
  --orange: #ff4f17;
  --orange-deep: #d93800;
  --purple: #6d35a5;
  --purple-deep: #3f176b;
  --lavender: #f1e8ff;
  --cream: #fff8f2;
  --ink: #0b0b0d;
  --paper: #ffffff;
  --muted: #5d5961;
  --line: #ded9e2;
  --focus: #1875ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-note {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--purple);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.top-note span {
  color: #ffb000;
  font-size: 0.7rem;
  animation: pulse 2s ease-in-out infinite;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 84px;
  align-items: center;
  gap: 30px;
  padding: 12px clamp(22px, 5vw, 80px);
  border-bottom: 1px solid rgba(11, 11, 13, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #f1e5df;
  background: #fff;
  box-shadow: 0 8px 22px rgba(240, 90, 36, 0.12);
}

.brand-mark img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.brand-copy strong,
.footer-brand strong {
  color: #f05a24;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.25rem;
  letter-spacing: 0.11em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--purple-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 42px);
}

nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #19181b;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  background: var(--purple-deep);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(760px, calc(100svh - 120px));
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  overflow: hidden;
  padding: clamp(64px, 7vw, 110px) clamp(22px, 6vw, 96px) 84px;
  background:
    radial-gradient(circle at 11% 15%, rgba(255, 79, 23, 0.13), transparent 22%),
    linear-gradient(120deg, #fff 0 52%, #f5edff 52%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  border: 60px solid rgba(255, 79, 23, 0.08);
  border-radius: 50%;
  content: "";
  left: -190px;
  bottom: -180px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(63, 23, 107, 0.2);
  border-radius: 999px;
  background: var(--lavender);
  color: var(--purple-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 79, 23, 0.14);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.65rem, 6.5vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

h1 span {
  display: block;
  color: var(--orange);
}

.hero-lede {
  max-width: 640px;
  margin: 30px 0 0;
  color: #302d32;
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.store-button {
  display: inline-flex;
  min-width: 178px;
  min-height: 62px;
  align-items: center;
  gap: 11px;
  padding: 8px 17px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 9px 0 rgba(11, 11, 13, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  box-shadow: 0 5px 0 rgba(11, 11, 13, 0.13);
  transform: translateY(4px);
}

.store-button--inverse {
  background: #fff;
  color: var(--ink);
}

.store-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
}

.store-button span {
  display: grid;
  text-align: left;
  line-height: 1.05;
}

.store-button small {
  font-size: 0.62rem;
  letter-spacing: 0.01em;
}

.store-button strong {
  margin-top: 3px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #252327;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-checks span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
}

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

.purple-orbit {
  position: absolute;
  z-index: -1;
  width: min(44vw, 620px);
  height: min(44vw, 620px);
  border: 2px dashed rgba(109, 53, 165, 0.22);
  border-radius: 50%;
  inset: 50% auto auto 52%;
  transform: translate(-50%, -50%);
  animation: spin 32s linear infinite;
}

.purple-orbit::before,
.purple-orbit::after {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.purple-orbit::before {
  top: 38px;
  left: 110px;
}

.purple-orbit::after {
  right: 30px;
  bottom: 150px;
  background: var(--purple);
}

.photo-frame {
  position: absolute;
  overflow: hidden;
  width: min(42vw, 610px);
  height: 500px;
  border: 10px solid #fff;
  border-radius: 44% 44% 44% 14%;
  background: #d9eadb;
  box-shadow: 0 28px 80px rgba(63, 23, 107, 0.2);
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-card {
  position: absolute;
  z-index: 4;
  top: 70px;
  right: -8px;
  width: 176px;
  padding: 9px;
  border: 2px solid var(--ink);
  border-radius: 32px;
  background: #111;
  box-shadow: 0 22px 50px rgba(11, 11, 13, 0.3);
  transform: rotate(4deg);
  animation: float 5s ease-in-out infinite;
}

.phone-card img {
  width: 100%;
  border-radius: 23px;
}

.phone-speaker {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 50%;
  width: 50px;
  height: 5px;
  border-radius: 10px;
  background: #0a0a0a;
  transform: translateX(-50%);
}

.floating-tag {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  padding: 14px 17px;
  border: 1px solid rgba(11, 11, 13, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(21, 11, 30, 0.14);
}

.floating-tag > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.floating-tag div {
  display: grid;
  line-height: 1.2;
}

.floating-tag strong {
  font-size: 0.83rem;
}

.floating-tag small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
}

.floating-tag--delivery {
  bottom: 62px;
  left: 0;
}

.floating-tag--choice {
  right: 0;
  bottom: 38px;
}

.floating-tag--choice > span {
  background: var(--purple);
}

.quick-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  padding: 26px clamp(22px, 6vw, 96px);
  background: var(--ink);
  color: #fff;
}

.quick-strip p {
  margin: 0;
  color: #ffbda8;
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}

.quick-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 26px;
}

.quick-strip span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-strip span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.section {
  padding: clamp(80px, 9vw, 140px) clamp(22px, 6vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(32px, 7vw, 110px);
  max-width: 1400px;
  margin: 0 auto 52px;
}

.section-heading > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.kicker {
  margin: 0 0 15px;
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker--light {
  color: #e4cffc;
}

.kicker--orange {
  color: #ff9d7c;
}

h2 {
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 5.4rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h2 span {
  display: block;
  color: var(--orange);
}

.services-section {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 310px 310px;
  gap: 18px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  min-height: 310px;
  border: 0;
  border-radius: 30px;
  background: #252327;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(26, 15, 31, 0.12);
}

.service-card::after {
  position: absolute;
  z-index: -1;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.94));
  content: "";
}

.service-card--large {
  grid-row: 1 / span 2;
}

.service-card img {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(11, 11, 13, 0.55);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.service-copy {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
}

.service-copy small {
  color: #ffb69e;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-copy strong {
  margin-top: 4px;
  font-size: clamp(1.6rem, 2.7vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.service-copy > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-copy b {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
}

.app-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(80px, 9vw, 135px) 0 clamp(65px, 8vw, 115px);
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 79, 23, 0.28), transparent 24%),
    var(--purple-deep);
  color: #fff;
}

.app-showcase::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -120px;
  width: 460px;
  height: 460px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  animation: spin 38s linear infinite;
}

.app-showcase__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(30px, 7vw, 110px);
  max-width: 1400px;
  margin: 0 auto 72px;
  padding: 0 clamp(22px, 6vw, 96px);
}

.app-showcase__intro h2 span {
  color: #ff9d7c;
}

.app-showcase__intro > p {
  margin: 0;
  color: #e4dbeb;
  font-size: 1.05rem;
  line-height: 1.8;
}

.app-intro-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link--light {
  color: #fff;
}

.screenshot-marquee {
  display: flex;
  gap: 22px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 42px max(24px, calc((100vw - 1400px) / 2)) 30px;
  scroll-padding-inline: max(24px, calc((100vw - 1400px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-color: #ff9d7c rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
}

.app-shot {
  flex: 0 0 244px;
  margin: 0;
  scroll-snap-align: start;
  transition: transform 220ms ease;
}

.app-shot--raised {
  transform: translateY(-28px);
}

.app-shot:hover {
  transform: translateY(-10px);
}

.app-shot--raised:hover {
  transform: translateY(-38px);
}

.app-shot img {
  width: 100%;
  border: 8px solid #161217;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.app-shot figcaption {
  margin-top: 15px;
  color: #e8deef;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.scroll-hint {
  display: none;
  margin: 16px 0 0;
  color: #d9c8e5;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.how-section {
  display: grid;
  grid-template-columns: minmax(350px, 0.8fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  max-width: 1500px;
  margin: 0 auto;
}

.how-photo {
  position: relative;
  align-self: stretch;
  min-height: 760px;
}

.how-photo::before {
  position: absolute;
  z-index: -1;
  top: -28px;
  right: -28px;
  width: 74%;
  height: 46%;
  border-radius: 36px;
  background: var(--orange);
  content: "";
}

.how-photo img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  border-radius: 44px 44px 170px 44px;
  object-fit: cover;
  object-position: 52% center;
}

.how-photo__badge {
  position: absolute;
  right: -28px;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 19px 13px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(20, 12, 23, 0.18);
}

.how-photo__badge span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-weight: 950;
}

.how-photo__badge strong {
  font-size: 0.82rem;
}

.how-content h2 span {
  color: var(--purple);
}

.how-intro {
  max-width: 620px;
  margin: 26px 0 32px;
  color: var(--muted);
  font-size: 1.05rem;
}

.step-list {
  display: grid;
  gap: 0;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.step-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-list > li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  background: var(--lavender);
  color: var(--purple-deep);
  font-weight: 950;
}

.step-list h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.step-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.primary-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 8px 0 rgba(11, 11, 13, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
  box-shadow: 0 4px 0 rgba(11, 11, 13, 0.14);
  transform: translateY(4px);
}

.primary-button--purple {
  border-color: var(--purple-deep);
  background: var(--purple-deep);
}

.accessibility-panel {
  display: grid;
  grid-template-columns: 210px minmax(320px, 0.8fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  margin: 0 clamp(16px, 3vw, 48px);
  padding: clamp(50px, 6vw, 88px);
  border-radius: 42px;
  background: var(--ink);
  color: #fff;
}

.accessibility-panel__mark {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  background: var(--purple-deep);
}

.accessibility-panel__mark img {
  width: 80%;
}

.accessibility-panel__copy h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
}

.accessibility-panel__copy p:last-child {
  margin: 22px 0 0;
  color: #d5d0d8;
}

.access-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 1px 16px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.access-list li > span {
  grid-row: 1 / span 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: var(--orange);
  font-size: 0.9rem;
  font-weight: 950;
}

.access-list strong {
  font-size: 0.9rem;
}

.access-list small {
  color: #bdb8c1;
  font-size: 0.72rem;
}

.provider-section {
  display: grid;
  grid-template-columns: minmax(400px, 0.85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  max-width: 1500px;
  margin: 0 auto;
}

.provider-copy h2 span {
  color: var(--purple);
}

.provider-copy > p:not(.kicker) {
  max-width: 650px;
  margin: 26px 0;
  color: var(--muted);
  line-height: 1.8;
}

.provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.provider-tags span {
  padding: 9px 13px;
  border: 1px solid #d6c6e8;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--purple-deep);
  font-size: 0.75rem;
  font-weight: 850;
}

.provider-photo {
  position: relative;
}

.provider-photo::after {
  position: absolute;
  z-index: -1;
  right: -30px;
  bottom: -30px;
  width: 60%;
  height: 70%;
  border-radius: 32px;
  background: var(--orange);
  content: "";
}

.provider-photo img {
  width: 100%;
  min-height: 530px;
  border-radius: 36px;
  object-fit: cover;
}

.provider-photo__note {
  position: absolute;
  bottom: 26px;
  left: 26px;
  display: grid;
  max-width: 310px;
  padding: 18px 21px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(15, 9, 17, 0.18);
}

.provider-photo__note strong {
  font-size: 0.92rem;
}

.provider-photo__note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(480px, 1.25fr);
  gap: clamp(50px, 8vw, 130px);
  background: var(--cream);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 126px;
}

.faq-heading h2 span {
  color: var(--purple);
}

.faq-heading > p:last-child {
  margin: 26px 0 0;
  color: var(--muted);
}

.faq-heading a {
  color: var(--purple-deep);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

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

.faq-list details {
  border: 1px solid #ded7e3;
  border-radius: 20px;
  background: #fff;
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--purple-deep);
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.download-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 50px;
  padding: clamp(70px, 8vw, 120px) clamp(22px, 7vw, 110px);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.15), transparent 25%),
    var(--orange);
  color: #fff;
}

.download-banner h2 {
  max-width: 800px;
}

.download-banner p:not(.kicker) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #fff4f0;
  font-size: 1.05rem;
}

.download-banner__actions {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.download-banner__actions > a:last-child {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.7fr;
  gap: 40px;
  padding: 64px clamp(22px, 6vw, 96px) 26px;
  background: #080709;
  color: #fff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  align-self: start;
  gap: 14px;
  text-decoration: none;
}

.footer-brand > span:last-child {
  display: grid;
}

.footer-brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.footer-brand small {
  margin-top: 3px;
  color: #aaa5ad;
  font-size: 0.62rem;
}

.site-footer > p {
  margin: 0;
  color: #aaa5ad;
  font-size: 0.85rem;
}

.site-footer > p b {
  color: #ff9d7c;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.footer-links a {
  color: #ddd8e1;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff9d7c;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #8f8a92;
  font-size: 0.72rem;
}

.footer-bottom a {
  color: #fff;
}

.footer-bottom__links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
}

.interior-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  overflow: hidden;
  padding: clamp(70px, 8vw, 120px) clamp(22px, 6vw, 96px);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 79, 23, 0.14), transparent 24%),
    linear-gradient(120deg, #fff 0 56%, var(--lavender) 56%);
}

.interior-hero--compact {
  min-height: 610px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 79, 23, 0.2), transparent 22%),
    var(--cream);
}

.interior-hero__copy {
  max-width: 760px;
}

.interior-hero__copy h1 {
  font-size: clamp(3.6rem, 6vw, 6.8rem);
}

.interior-hero__copy h1 span {
  color: var(--purple);
}

.interior-hero__copy > p:not(.kicker) {
  max-width: 680px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.interior-hero__image {
  position: relative;
}

.interior-hero__image::before {
  position: absolute;
  z-index: -1;
  top: -26px;
  right: -26px;
  width: 72%;
  height: 65%;
  border-radius: 34px;
  background: var(--orange);
  content: "";
}

.interior-hero__image img {
  width: 100%;
  min-height: 520px;
  border: 8px solid #fff;
  border-radius: 42px 42px 130px 42px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(45, 21, 68, 0.2);
}

.interior-hero__tag {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  max-width: 300px;
  padding: 16px 19px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.interior-hero__tag strong {
  font-size: 0.9rem;
}

.interior-hero__tag span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
}

.vendor-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(22px, 6vw, 96px);
  background: var(--ink);
  color: #fff;
}

.vendor-benefits article {
  position: relative;
  padding: 40px clamp(22px, 3vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.vendor-benefits article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.vendor-benefits article > span {
  color: #ff9d7c;
  font-size: 0.74rem;
  font-weight: 900;
}

.vendor-benefits h2 {
  margin-top: 8px;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  letter-spacing: -0.035em;
}

.vendor-benefits p {
  margin: 12px 0 0;
  color: #bbb6bd;
  font-size: 0.86rem;
}

.vendor-options {
  background: var(--cream);
}

.vendor-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1480px;
  margin: 0 auto;
}

.vendor-option-card {
  overflow: hidden;
  border: 1px solid #dfd7e3;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(23, 11, 31, 0.08);
}

.vendor-option-card__image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.vendor-option-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.vendor-option-card:hover .vendor-option-card__image img {
  transform: scale(1.05);
}

.vendor-option-card__image > span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vendor-option-card__body {
  padding: 28px;
}

.vendor-option-card h3 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.vendor-option-card p {
  min-height: 78px;
  margin: 13px 0 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

.vendor-option-card ul {
  display: grid;
  min-height: 150px;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.vendor-option-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  color: #373238;
  font-size: 0.8rem;
}

.vendor-option-card li span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 950;
}

.vendor-option-card .primary-button {
  width: 100%;
  padding-inline: 16px;
  font-size: 0.78rem;
}

.vendor-onboarding-cta,
.onboarding-help {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding: clamp(64px, 7vw, 100px) clamp(22px, 7vw, 110px);
  background: var(--purple-deep);
  color: #fff;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-page-card {
  overflow: hidden;
  border: 1px solid #ded7e3;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(34, 15, 48, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(34, 15, 48, 0.15);
}

.service-page-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-page-card > div {
  padding: 28px;
}

.service-page-card h2 {
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
}

.service-page-card p {
  min-height: 88px;
  color: var(--muted);
  line-height: 1.65;
}

.service-page-card strong {
  color: var(--purple);
}

.feature-split,
.about-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(440px, 1.15fr);
  gap: clamp(50px, 9vw, 150px);
}

.feature-split > div:first-child,
.about-story > div:first-child {
  align-self: start;
  position: sticky;
  top: 130px;
}

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

.feature-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  padding: 30px;
  border: 1px solid #ded7e3;
  border-radius: 24px;
  background: #fff;
}

.feature-list article > span {
  grid-row: 1 / 3;
  color: var(--orange);
  font-weight: 950;
}

.feature-list h3,
.feature-list p {
  margin: 0;
}

.feature-list p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.feature-split--purple {
  background: var(--purple-deep);
  color: #fff;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--cream);
}

.occasion-grid > .kicker {
  grid-column: 1 / -1;
}

.occasion-grid article {
  min-height: 160px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
}

.occasion-grid article span {
  color: var(--orange);
}

.occasion-grid h2 {
  margin-top: 42px;
  font-size: 1.35rem;
}

.app-showcase-hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 80px clamp(22px, 8vw, 130px) 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 79, 23, 0.28), transparent 28%),
    var(--purple-deep);
  color: #fff;
}

.app-showcase-hero h1 {
  color: #fff;
  font-size: clamp(3.8rem, 7vw, 7.6rem);
}

.app-showcase-hero h1 span {
  color: #ff9d7c;
}

.app-showcase-hero p:not(.kicker) {
  max-width: 650px;
  margin: 24px 0 32px;
  color: #e6dced;
  font-size: 1.08rem;
}

.app-showcase-hero > img {
  align-self: end;
  justify-self: center;
  width: min(390px, 80%);
  max-height: 690px;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.36));
}

.app-gallery {
  overflow: hidden;
  background: var(--cream);
}

.app-gallery__track {
  display: grid;
  grid-template-columns: repeat(6, minmax(210px, 1fr));
  gap: 22px;
  overflow-x: auto;
  padding: 12px 4px 30px;
  scroll-snap-type: x mandatory;
}

.app-gallery__track img {
  width: 100%;
  min-width: 210px;
  border-radius: 28px;
  scroll-snap-align: start;
  box-shadow: 0 16px 40px rgba(45, 21, 68, 0.15);
}

.about-story > div:last-child {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.55;
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: #fff;
}

.values-strip article {
  min-height: 260px;
  padding: 46px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.values-strip span {
  color: #ff9d7c;
  font-weight: 900;
}

.values-strip h2 {
  margin: 70px 0 10px;
  color: #fff;
}

.values-strip p {
  color: #bdb8c1;
}

.simple-hero {
  padding: clamp(80px, 10vw, 150px) clamp(22px, 12vw, 190px);
  background: var(--cream);
}

.simple-hero h1 {
  margin-top: 18px;
  font-size: clamp(4rem, 8vw, 8rem);
}

.simple-hero h1 span {
  color: var(--purple);
}

.simple-hero > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
}

.faq-page-list {
  display: grid;
  gap: 14px;
  max-width: 1050px;
  margin: 0 auto;
}

.faq-page-list details {
  border: 1px solid #ded7e3;
  border-radius: 20px;
}

.faq-page-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-page-list summary span {
  color: var(--orange);
  font-size: 1.5rem;
}

.faq-page-list details[open] summary span { transform: rotate(45deg); }

.faq-page-list details p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-page {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: clamp(50px, 9vw, 140px);
  padding: clamp(70px, 9vw, 135px) clamp(22px, 8vw, 130px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 79, 23, .16), transparent 25%),
    var(--cream);
}

.contact-page h1 {
  font-size: clamp(4rem, 7vw, 7rem);
}

.contact-page h1 span { color: var(--purple); }

.contact-page > div:first-child > p:last-child {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-card {
  padding: clamp(30px, 5vw, 60px);
  border-radius: 34px;
  background: var(--purple-deep);
  color: #fff;
  box-shadow: 0 30px 70px rgba(45, 21, 68, .22);
}

.contact-card > span {
  color: #ff9d7c;
  font-weight: 900;
}

.contact-card h2 {
  margin: 18px 0;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 3rem);
  word-break: break-word;
}

.contact-card p { color: #d5cddd; }
.contact-card hr { margin: 34px 0; border: 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-card .text-link { color: #fff; }

/* Full-width homepage photo hero */
.home-photo-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(650px, 82vh, 900px);
  align-items: center;
  padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 110px);
  background: #171019;
  color: #fff;
}

.home-photo-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 7, 12, .84) 0%, rgba(10, 7, 12, .62) 38%, rgba(10, 7, 12, .10) 70%, rgba(10, 7, 12, .03) 100%);
  content: "";
}

.home-photo-hero .interior-hero__copy {
  z-index: 2;
  max-width: 760px;
}

.home-photo-hero .interior-hero__copy h1,
.home-photo-hero .interior-hero__copy > p:not(.kicker) {
  color: #fff;
}

.home-photo-hero .interior-hero__copy h1 span {
  color: #ff9d7c;
}

.home-photo-hero .text-link {
  color: #fff;
}

.home-photo-hero .interior-hero__image {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.home-photo-hero .interior-hero__image::before {
  display: none;
}

.home-photo-hero .interior-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.home-photo-hero .interior-hero__tag {
  right: clamp(22px, 5vw, 80px);
  bottom: 34px;
}

@media (max-width: 900px) {
  .service-page-grid,
  .occasion-grid,
  .values-strip {
    grid-template-columns: 1fr;
  }

  .service-page-card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
  }

  .service-page-card img {
    height: 100%;
  }

  .feature-split,
  .about-story,
  .app-showcase-hero,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .feature-split > div:first-child,
  .about-story > div:first-child {
    position: static;
  }

  .app-showcase-hero {
    padding-top: 70px;
  }

  .app-showcase-hero > img {
    max-height: 560px;
  }
}

@media (max-width: 600px) {
  .service-page-card {
    display: block;
  }

  .service-page-card img {
    height: 240px;
  }

  .service-page-card p {
    min-height: auto;
  }

  .feature-list article {
    grid-template-columns: 44px 1fr;
    padding: 22px;
  }

  .app-showcase-hero {
    min-height: auto;
    gap: 35px;
  }

  .app-showcase-hero h1,
  .simple-hero h1,
  .contact-page h1 {
    font-size: 3.25rem;
  }

  .values-strip article {
    min-height: 210px;
    padding: 32px 24px;
  }

  .values-strip h2 {
    margin-top: 48px;
  }

  .home-photo-hero {
    min-height: 760px;
    align-items: flex-end;
    padding-bottom: 120px;
  }

  .home-photo-hero::after {
    background: linear-gradient(0deg, rgba(10, 7, 12, .93) 0%, rgba(10, 7, 12, .67) 50%, rgba(10, 7, 12, .05) 85%);
  }

  .home-photo-hero .interior-hero__image img {
    object-position: 66% center;
  }

  .home-photo-hero .interior-hero__tag {
    display: none;
  }
}

/* Homepage section flow and gentle motion */
.home-benefits {
  position: relative;
  z-index: 3;
  margin-top: -1px;
}

.home-services {
  position: relative;
  padding-top: clamp(78px, 9vw, 130px);
  padding-bottom: clamp(88px, 10vw, 145px);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 79, 23, .10), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fbf7fd 100%);
}

.home-services::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 64px;
  background: var(--purple-deep);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  content: "";
}

.home-services__intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 26px;
}

.home-services__intro h2 span {
  display: block;
  color: var(--purple);
}

.home-services__intro > p {
  max-width: 600px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}

.home-services .service-page-card {
  position: relative;
  z-index: 1;
  border: 0;
  animation: cora-card-float 6s ease-in-out infinite;
}

.home-services .service-page-card:nth-child(2) {
  animation-delay: -2s;
}

.home-services .service-page-card:nth-child(3) {
  animation-delay: -4s;
}

.home-services .service-page-card:hover {
  animation-play-state: paused;
  transform: translateY(-7px);
}

.home-services .service-page-card img {
  height: 230px;
  padding: 8px;
  background: #f5eff8;
  object-fit: contain;
  object-position: center;
}

.home-app-showcase {
  position: relative;
  padding-top: clamp(90px, 10vw, 145px);
}

.home-app-showcase::before {
  position: absolute;
  top: 12%;
  left: 7%;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  animation: cora-orbit 14s linear infinite;
}

.home-hero-fit .primary-button,
.home-app-showcase .store-button,
.download-banner .store-button {
  animation: cora-button-float 3.6s ease-in-out infinite;
}

.home-app-showcase .store-button {
  animation-delay: -1.2s;
}

.download-banner .store-button {
  animation-delay: -2.2s;
}

.home-hero-fit .primary-button:hover,
.home-app-showcase .store-button:hover,
.download-banner .store-button:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.02);
}

@keyframes cora-button-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes cora-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes cora-orbit {
  from { transform: rotate(0deg) translateX(10px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(10px) rotate(-360deg); }
}

@media (max-width: 900px) {
  .home-services__intro {
    grid-template-columns: 1fr;
  }

  .home-services .service-page-card {
    animation-name: cora-card-float-mobile;
  }
}

@keyframes cora-card-float-mobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .home-services .service-page-card,
  .home-hero-fit .primary-button,
  .home-app-showcase .store-button,
  .download-banner .store-button,
  .home-app-showcase::before {
    animation: none !important;
  }
}

/* Final responsive safeguards for WordPress builders and caching plugins. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 10px 18px;
  }

  .site-header nav {
    display: none;
  }

  .site-header .header-cta {
    display: inline-flex;
    padding: 12px 15px;
    font-size: .76rem;
  }

  .home-hero-fit {
    width: 100%;
    max-height: none;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 50px 20px 64px;
  }

  .home-hero-fit__copy,
  .home-hero-fit__photo {
    width: 100%;
    max-width: 760px;
    justify-self: center;
  }

  .home-hero-fit__photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  .vendor-benefits,
  .service-page-grid,
  .values-strip,
  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .home-services__intro,
  .app-showcase-hero,
  .download-banner,
  .site-footer,
  .feature-split,
  .about-story,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .home-services .service-page-card {
    display: grid;
    grid-template-columns: minmax(250px, .9fr) 1.1fr;
  }

  .home-services .service-page-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: contain;
  }

  .app-showcase-hero > img {
    width: min(340px, 80%);
    justify-self: center;
  }

  .site-footer {
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .top-note {
    padding-inline: 14px;
    font-size: .7rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark img {
    width: 40px;
    height: 40px;
  }

  .site-header .header-cta {
    display: none;
  }

  .home-hero-fit {
    padding: 40px 17px 52px;
  }

  .home-hero-fit__copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.25rem);
  }

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

  .home-hero-fit__actions .primary-button {
    justify-content: center;
  }

  .home-services {
    padding-inline: 17px;
  }

  .home-services .service-page-card {
    display: block;
  }

  .home-services .service-page-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .app-showcase-hero,
  .download-banner,
  .site-footer,
  .contact-page {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .mobile-download {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }
}

/* Viewport-fitted homepage hero with a guaranteed uncropped photo. */
.home-hero-fit {
  display: grid;
  width: 100%;
  min-height: 430px;
  max-height: 560px;
  grid-template-columns: minmax(340px, 1fr) minmax(400px, .84fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  padding: clamp(28px, 4vh, 46px) clamp(22px, 6vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 79, 23, .15), transparent 26%),
    linear-gradient(120deg, #fff 0 58%, #f4edf9 58%);
}

.home-hero-fit__copy {
  max-width: 680px;
}

.home-hero-fit__copy h1 {
  margin: 16px 0 22px;
  font-size: clamp(2.55rem, 4vw, 4.35rem);
  line-height: .98;
}

.home-hero-fit__copy h1 span {
  display: block;
  margin-top: 10px;
  color: var(--purple);
}

.home-hero-fit__copy > p:not(.kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.home-hero-fit__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.home-hero-fit__photo {
  position: relative;
  display: grid;
  width: min(100%, 610px);
  height: min(38vw, 430px, calc(100svh - 210px));
  min-height: 300px;
  margin: 0;
  place-items: center;
  justify-self: end;
}

.home-hero-fit__photo::before {
  position: absolute;
  z-index: 0;
  inset: 4% 1% 3% 7%;
  border-radius: 34px 34px 110px 34px;
  background: var(--orange);
  content: "";
  transform: translate(18px, -14px);
}

.home-hero-fit__photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 7px solid #fff;
  border-radius: 32px 32px 105px 32px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  box-shadow: 0 24px 60px rgba(45, 21, 68, .18);
}

.home-hero-fit__photo figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  display: grid;
  padding: 13px 17px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
}

.home-hero-fit__photo figcaption strong {
  font-size: .82rem;
}

.home-hero-fit__photo figcaption span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .68rem;
}

@media (max-width: 950px) {
  .home-hero-fit {
    max-height: none;
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .home-hero-fit__copy {
    max-width: 760px;
  }

  .home-hero-fit__photo {
    width: min(100%, 760px);
    height: auto;
    min-height: 0;
  }

  .home-hero-fit__photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 600px) {
  .home-hero-fit {
    gap: 34px;
    padding: 36px 18px 50px;
  }

  .home-hero-fit__copy h1 {
    font-size: clamp(2.6rem, 11vw, 3.5rem);
  }

  .home-hero-fit__photo figcaption {
    display: none;
  }
}

/* WordPress theme integration */
body {
  margin: 0;
}

.site-header nav .menu-item {
  display: inline-block;
}

.site-header nav .menu-item a {
  display: inline-flex;
}

.custom-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.wordpress-content {
  max-width: 1100px;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.75;
}

.wordpress-content img {
  max-width: 100%;
  height: auto;
}

.wordpress-content a {
  color: var(--purple);
  font-weight: 800;
}

.cora-reveal {
  opacity: 1;
  transform: none;
}

.cora-reveal--visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 4px solid #ffb000;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cora-reveal {
    opacity: 1;
    transform: none;
  }
}

.vendor-onboarding-cta h2,
.onboarding-help h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
}

.vendor-onboarding-cta p:not(.kicker),
.onboarding-help p:not(.kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #d7cce0;
}

.vendor-onboarding-cta > div:last-child {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.onboarding-hero-card {
  padding: clamp(28px, 4vw, 50px);
  border-radius: 32px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 30px 70px rgba(25, 12, 32, 0.18);
}

.onboarding-hero-card > p {
  margin: 0 0 20px;
  color: #ffae93;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.onboarding-hero-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.onboarding-hero-card li::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 950;
}

.interior-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.onboarding-section {
  background: #fff;
}

.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.onboarding-steps li {
  min-height: 310px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
}

.onboarding-steps li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--purple);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 950;
}

.onboarding-steps h3 {
  margin: 45px 0 10px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.onboarding-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.onboarding-help {
  background: var(--orange);
}

.onboarding-help p:not(.kicker) {
  color: #fff3ef;
}

.mobile-download {
  display: none;
}

@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.7);
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(-14px);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
    background:
      radial-gradient(circle at 11% 15%, rgba(255, 79, 23, 0.13), transparent 22%),
      linear-gradient(180deg, #fff 0 49%, #f5edff 49%);
  }

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

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

  .photo-frame {
    width: min(78vw, 660px);
  }

  .purple-orbit {
    width: min(85vw, 700px);
    height: min(85vw, 700px);
  }

  .section-heading,
  .app-showcase__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .app-intro-actions {
    grid-column: 1;
  }

  .how-section,
  .provider-section {
    grid-template-columns: 1fr;
  }

  .how-photo {
    min-height: 650px;
  }

  .how-photo img {
    min-height: 650px;
  }

  .accessibility-panel {
    grid-template-columns: 140px 1fr;
  }

  .access-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

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

  .vendor-option-grid {
    grid-template-columns: 1fr;
  }

  .vendor-option-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) 1fr;
  }

  .vendor-option-card__image {
    height: 100%;
    min-height: 440px;
  }

  .vendor-option-card p,
  .vendor-option-card ul {
    min-height: 0;
  }

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

@media (max-width: 640px) {
  .top-note {
    font-size: 0.7rem;
  }

  .site-header {
    min-height: 72px;
    padding: 8px 16px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .brand-mark img {
    width: 42px;
    height: 42px;
  }

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

  .brand-copy small,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 34px;
    padding: 48px 18px 62px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 4.9rem);
    letter-spacing: -0.07em;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 1.03rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
  }

  .hero-checks {
    display: grid;
  }

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

  .photo-frame {
    width: calc(100vw - 42px);
    height: 390px;
    border-width: 7px;
    border-radius: 36% 36% 36% 12%;
  }

  .phone-card {
    top: 24px;
    right: -8px;
    width: 126px;
    border-radius: 24px;
  }

  .phone-card img {
    border-radius: 17px;
  }

  .floating-tag {
    min-width: 180px;
    padding: 11px 13px;
  }

  .floating-tag--delivery {
    bottom: 8px;
  }

  .floating-tag--choice {
    display: none;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quick-strip div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 72px 18px;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 32px;
  }

  .section-heading > p {
    font-size: 0.97rem;
  }

  h2 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .service-card,
  .service-card--large {
    grid-row: auto;
    min-height: 390px;
  }

  .service-copy strong {
    font-size: 2rem;
  }

  .app-showcase {
    padding: 72px 0 60px;
  }

  .app-showcase__intro {
    margin-bottom: 40px;
    padding: 0 18px;
  }

  .app-showcase__intro > p {
    font-size: 0.97rem;
  }

  .app-intro-actions {
    display: grid;
  }

  .screenshot-marquee {
    gap: 16px;
    padding: 38px 22px 22px;
  }

  .app-shot {
    flex-basis: min(68vw, 250px);
  }

  .scroll-hint {
    display: block;
  }

  .how-section {
    gap: 60px;
  }

  .how-photo,
  .how-photo img {
    min-height: 540px;
  }

  .how-photo img {
    border-radius: 30px 30px 100px 30px;
  }

  .how-photo__badge {
    right: -4px;
    bottom: 24px;
  }

  .how-photo::before {
    top: -14px;
    right: -8px;
  }

  .accessibility-panel {
    grid-template-columns: 1fr;
    margin: 0 10px;
    padding: 50px 20px;
    border-radius: 30px;
  }

  .accessibility-panel__mark {
    width: 150px;
  }

  .access-list {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .provider-section {
    gap: 60px;
  }

  .provider-photo img {
    min-height: 420px;
  }

  .provider-photo::after {
    right: -8px;
    bottom: -14px;
  }

  .faq-section {
    gap: 40px;
  }

  .faq-list summary {
    min-height: 70px;
    font-size: 0.9rem;
  }

  .download-banner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 112px;
  }

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

  .mobile-download {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    min-height: 70px;
    align-items: center;
    gap: 11px;
    padding: 8px 14px 8px 8px;
    border: 2px solid #fff;
    border-radius: 20px;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
  }

  .mobile-download img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .mobile-download span {
    display: grid;
    line-height: 1.1;
  }

  .mobile-download small {
    color: #c8c2ca;
    font-size: 0.62rem;
  }

  .mobile-download strong {
    margin-top: 4px;
    font-size: 0.85rem;
  }

  .mobile-download b {
    color: #ff9d7c;
    font-size: 1.25rem;
  }

  .interior-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 18px 72px;
    background:
      radial-gradient(circle at 10% 18%, rgba(255, 79, 23, 0.14), transparent 24%),
      linear-gradient(180deg, #fff 0 58%, var(--lavender) 58%);
  }

  .interior-hero--compact {
    background: var(--cream);
  }

  .interior-hero__copy h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .interior-hero__copy > p:not(.kicker) {
    font-size: 0.98rem;
  }

  .interior-hero__image img {
    min-height: 400px;
    border-radius: 28px 28px 90px 28px;
  }

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

  .vendor-benefits article,
  .vendor-benefits article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .vendor-option-card {
    display: block;
  }

  .vendor-option-card__image {
    min-height: 310px;
  }

  .vendor-onboarding-cta,
  .onboarding-help {
    grid-template-columns: 1fr;
    padding: 64px 18px;
  }

  .onboarding-steps {
    grid-template-columns: 1fr;
  }

  .onboarding-steps li {
    min-height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .eyebrow,
  .store-button,
  .header-cta,
  .floating-tag {
    border: 2px solid CanvasText;
  }
}

/* Dedicated edge-to-edge homepage hero. Kept separate from interior hero grids. */
.home-hero-full {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: clamp(680px, 84vh, 940px);
  margin: 0;
  background-color: #18111c;
  color: #fff;
}

.home-hero-full__photo {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-hero-full__shade {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 110px);
  background:
    linear-gradient(90deg, rgba(9, 6, 11, .88) 0%, rgba(9, 6, 11, .72) 31%, rgba(9, 6, 11, .34) 52%, rgba(9, 6, 11, 0) 74%);
}

.home-hero-full__copy {
  width: min(720px, 53vw);
}

.home-hero-full h1 {
  margin: 18px 0 26px;
  color: #fff;
  font-size: clamp(3rem, 5vw, 5.7rem);
  line-height: .98;
}

.home-hero-full h1 span {
  display: block;
  margin-top: 14px;
  color: #ff9d7c;
}

.home-hero-full__copy > p:not(.kicker) {
  max-width: 650px;
  color: #f1edf2;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.home-hero-full__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.home-hero-full__trust span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: rgba(12, 8, 14, .36);
  color: #fff;
  font-size: .72rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

@media (max-width: 760px) {
  .home-hero-full {
    min-height: 820px;
  }

  .home-hero-full__photo {
    object-position: 67% center;
  }

  .home-hero-full__shade {
    align-items: flex-end;
    padding: 220px 20px 104px;
    background:
      linear-gradient(0deg, rgba(9, 6, 11, .96) 0%, rgba(9, 6, 11, .82) 44%, rgba(9, 6, 11, .12) 78%);
  }

  .home-hero-full__copy {
    width: 100%;
  }

  .home-hero-full h1 {
    font-size: clamp(2.7rem, 11vw, 3.7rem);
  }

  .home-hero-full__trust {
    display: none;
  }
}

/* Restored split homepage hero: content left, lifestyle photo right. */
.home-split-hero {
  min-height: min(650px, calc(100vh - 114px));
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: clamp(32px, 5vw, 76px);
  padding-top: clamp(44px, 6vh, 72px);
  padding-bottom: clamp(44px, 6vh, 72px);
}

.home-split-hero .interior-hero__copy h1 {
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: .98;
}

.home-split-hero .interior-hero__image img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: min(560px, 66vh);
  border-radius: 36px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.home-split-hero .interior-hero__image::before {
  top: -18px;
  right: -18px;
}

@media (max-width: 900px) {
  .home-split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-split-hero .interior-hero__image img {
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }
}

@media (max-width: 600px) {
  .home-split-hero .interior-hero__copy h1 {
    font-size: clamp(2.7rem, 12vw, 3.7rem);
  }

  .home-split-hero .interior-hero__image img {
    height: auto;
    min-height: 0;
    object-position: center;
  }
}

/* FINAL CASCADE: responsive build 1.1.0 */
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto !important;
    min-height: 72px;
    padding: 10px 18px;
  }

  .site-header nav {
    display: none !important;
  }

  .home-hero-fit {
    width: 100%;
    min-height: 0;
    max-height: none;
    grid-template-columns: 1fr !important;
    gap: 32px;
    padding: 48px 20px 62px;
  }

  .home-hero-fit__copy,
  .home-hero-fit__photo {
    width: 100%;
    max-width: 760px;
    justify-self: center;
  }

  .home-hero-fit__photo {
    height: auto;
    min-height: 0;
  }

  .home-hero-fit__photo img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  .vendor-benefits,
  .service-page-grid,
  .values-strip,
  .occasion-grid,
  .home-services__intro,
  .app-showcase-hero,
  .download-banner,
  .site-footer,
  .feature-split,
  .about-story,
  .contact-page {
    grid-template-columns: 1fr !important;
  }

  .home-services .service-page-card {
    display: grid;
    grid-template-columns: minmax(240px, .9fr) 1.1fr;
  }

  .home-services .service-page-card img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: contain;
  }
}

@media (max-width: 600px) {
  .site-header {
    grid-template-columns: 1fr !important;
  }

  .site-header .header-cta {
    display: none !important;
  }

  .home-hero-fit {
    padding: 38px 17px 50px;
  }

  .home-hero-fit__copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

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

  .home-services {
    padding-right: 17px;
    padding-left: 17px;
  }

  .home-services .service-page-card {
    display: block;
  }

  .home-services .service-page-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .app-showcase-hero,
  .download-banner,
  .site-footer,
  .contact-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* WordPress cache/optimization compatibility: never leave homepage sections hidden. */
.home-hero-fit,
.home-benefits,
.home-services,
.home-app-showcase,
.download-banner {
  visibility: visible !important;
  opacity: 1 !important;
}

.home-services,
.home-app-showcase,
.download-banner {
  min-height: 0 !important;
  height: auto !important;
}

/* Version 1.2: roomier homepage flow, expanded app gallery, and native forms. */
.home-benefits {
  margin-bottom: clamp(54px, 7vw, 110px);
}

.home-services {
  margin-bottom: clamp(70px, 9vw, 140px);
}

.home-app-showcase {
  grid-template-columns: minmax(300px, .8fr) minmax(520px, 1.2fr);
  gap: clamp(42px, 6vw, 100px);
  padding-top: clamp(85px, 9vw, 140px);
  padding-bottom: clamp(85px, 9vw, 140px);
}

.home-app-showcase__content {
  position: relative;
  z-index: 2;
}

.home-app-showcase h2 {
  color: #fff;
  font-size: clamp(3rem, 5.4vw, 6.5rem);
  line-height: .98;
}

.home-app-showcase h2 span {
  color: #ff9d7c;
}

.home-app-showcase__content > p:not(.kicker) {
  max-width: 680px;
  line-height: 1.75;
}

.home-app-features {
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.home-app-features li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}

.home-app-features strong {
  color: #fff;
  font-size: 1rem;
}

.home-app-features span {
  color: #ded2e7;
  font-size: .92rem;
  line-height: 1.55;
}

.home-app-screens {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(125px, 1fr));
  align-items: center;
  gap: clamp(10px, 1.5vw, 22px);
}

.home-app-screens img {
  width: 100%;
  height: auto;
  border: 7px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 55px rgba(0,0,0,.3);
}

.home-app-screens img:nth-child(even) {
  transform: translateY(36px);
}

.download-banner {
  margin-top: clamp(70px, 9vw, 140px);
}

.contact-page {
  align-items: start;
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding: 24px;
  border-left: 5px solid var(--orange);
  border-radius: 0 20px 20px 0;
  background: #fff;
  box-shadow: 0 16px 38px rgba(45,21,68,.08);
}

.contact-direct a {
  color: var(--purple);
  font-weight: 900;
  word-break: break-word;
}

.contact-direct span {
  color: var(--muted);
  font-size: .92rem;
}

.cora-form {
  width: 100%;
}

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

.cora-form label {
  display: grid;
  gap: 8px;
}

.cora-form label > span {
  color: inherit;
  font-size: .9rem;
  font-weight: 800;
}

.cora-form input,
.cora-form select,
.cora-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 2px solid rgba(45,21,68,.14);
  border-radius: 13px;
  outline: none;
  background: #fff;
  color: #151019;
  font: inherit;
}

.contact-card .cora-form input,
.contact-card .cora-form select,
.contact-card .cora-form textarea {
  border-color: rgba(255,255,255,.24);
}

.cora-form textarea {
  min-height: 130px;
  resize: vertical;
}

.cora-form input:focus,
.cora-form select:focus,
.cora-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,79,23,.16);
}

.cora-form-wide {
  grid-column: 1 / -1;
}

.cora-consent {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 11px !important;
  margin: 22px 0;
}

.cora-consent input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.cora-consent span {
  line-height: 1.5;
}

.cora-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.cora-form-notice {
  margin-bottom: 22px;
  padding: 15px 18px;
  border-radius: 12px;
  font-weight: 800;
}

.cora-form-notice--success {
  background: #d9f8e7;
  color: #124c2b;
}

.cora-form-notice--error {
  background: #ffe2db;
  color: #7b1e0f;
}

.vendor-application-section {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(520px, 1.38fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: start;
  margin-top: clamp(50px, 7vw, 100px);
  background: linear-gradient(135deg, #fff8f1, #f4edf8);
}

.vendor-form-intro {
  position: sticky;
  top: 120px;
}

.vendor-form-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 1;
}

.vendor-form-intro h2 span {
  display: block;
  color: var(--purple);
}

.cora-vendor-form {
  padding: clamp(28px, 4vw, 52px);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 25px 65px rgba(45,21,68,.12);
}

.cora-form-help {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

@media (max-width: 1050px) {
  .home-app-showcase {
    grid-template-columns: 1fr;
  }

  .home-app-screens {
    grid-template-columns: repeat(4, minmax(105px, 1fr));
  }

  .vendor-application-section {
    grid-template-columns: 1fr;
  }

  .vendor-form-intro {
    position: static;
  }
}

@media (max-width: 700px) {
  .home-app-showcase {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .home-app-screens {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .home-app-screens img:nth-child(even) {
    transform: translateY(18px);
  }

  .cora-form-grid {
    grid-template-columns: 1fr;
  }

  .cora-form-wide {
    grid-column: auto;
  }

  .contact-card,
  .cora-vendor-form {
    padding: 24px 18px;
    border-radius: 22px;
  }
}
