:root {
  --bg: #031311;
  --bg-soft: #061f1c;
  --bg-elevated: rgba(7, 31, 28, 0.92);
  --surface: rgba(17, 67, 57, 0.34);
  --surface-strong: rgba(27, 88, 76, 0.46);
  --text: #f7efde;
  --muted: #c1b7a0;
  --line: rgba(217, 191, 130, 0.16);
  --line-strong: rgba(217, 191, 130, 0.36);
  --glow: rgba(217, 191, 130, 0.22);
  --brand-emerald: #072e2b;
  --brand-emerald-soft: #115048;
  --brand-gold: #d9bf82;
  --brand-gold-soft: #f2ddb4;
  --shadow: 0 36px 120px rgba(0, 0, 0, 0.52);
  --font-display: "SF Pro Display", "Avenir Next", "Segoe UI", sans-serif;
  --font-serif: "Bodoni 72", "Iowan Old Style", "Times New Roman", serif;
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-display);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 16%, rgba(217, 191, 130, 0.12), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(39, 116, 98, 0.18), transparent 18%),
    radial-gradient(circle at 55% 90%, rgba(16, 76, 67, 0.18), transparent 22%),
    linear-gradient(180deg, #010c0a 0%, #051916 30%, #031311 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(rgba(217, 191, 130, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 191, 130, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.08;
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
}

.page-aura {
  position: fixed;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
}

.aura-left {
  top: -10rem;
  left: -10rem;
  background: rgba(217, 191, 130, 0.18);
}

.aura-right {
  right: -12rem;
  top: 12rem;
  background: rgba(17, 80, 72, 0.24);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 140;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(7, 34, 31, 0.96);
  color: var(--text);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
}

button,
input {
  font: inherit;
}

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

.site-shell {
  position: relative;
}

.container {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 7rem 0;
}

.eyebrow,
.micro-label,
.service-index {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brand-gold-soft);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before,
.micro-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(217, 191, 130, 0.7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 1rem;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 26, 23, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(242, 221, 180, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 38px rgba(0, 0, 0, 0.34);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(242, 221, 180, 0.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(242, 221, 180, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(18, 83, 73, 0.98), rgba(5, 24, 21, 0.98));
  color: var(--brand-gold-soft);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 38px rgba(0, 0, 0, 0.36);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand-text strong {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text) !important;
  background:
    radial-gradient(circle at top left, rgba(242, 221, 180, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(18, 81, 72, 0.9), rgba(7, 33, 29, 0.95));
}

.hero {
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  max-width: 34rem;
}

.hero-title,
.section-heading h2,
.story-copy h3,
.reason-copy h2,
.download-copy h2,
.form-intro h2 {
  margin: 0.8rem 0 1rem;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-title {
  font-size: clamp(4rem, 9vw, 7.8rem);
  font-weight: 640;
}

.hero-subtitle,
.section-heading p,
.story-copy p,
.service-meta p,
.reason-copy p,
.reason-list span,
.download-copy p,
.form-intro p,
.form-note,
.form-status,
.footer-links,
.footer-links p {
  color: var(--muted);
  line-height: 1.75;
}

.section-heading p strong {
  color: var(--text);
  font-weight: 600;
}

.hero-subtitle {
  max-width: 24rem;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.2rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(242, 221, 180, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(12, 48, 42, 0.88), rgba(5, 25, 22, 0.94));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.hero-proof span {
  color: var(--brand-gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-proof strong {
  color: rgba(247, 239, 222, 0.9);
  font-size: 0.95rem;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.button {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 190px;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

.button span,
.button strong {
  position: relative;
}

.button span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button strong {
  font-size: 1rem;
  font-weight: 600;
}

.button:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.button-solid {
  background:
    radial-gradient(circle at top left, rgba(242, 221, 180, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(23, 97, 85, 0.96), rgba(7, 34, 30, 0.96));
}

.button-ghost {
  background:
    radial-gradient(circle at top left, rgba(242, 221, 180, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(8, 33, 30, 0.96), rgba(4, 18, 15, 0.98));
}

.category-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.category-rail span {
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 52, 45, 0.6);
  color: var(--brand-gold-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero-visual {
  position: relative;
  min-height: 48rem;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1800px;
}

.hero-sculpture,
.hero-device {
  position: absolute;
  filter: drop-shadow(0 40px 120px rgba(0, 0, 0, 0.46));
}

.hero-sculpture {
  top: -1rem;
  left: 2rem;
  width: min(32rem, 64%);
}

.hero-device {
  right: 1rem;
  bottom: 1.5rem;
  width: min(23.5rem, 52%);
}

.micro-chip {
  position: absolute;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chip-top {
  top: 5rem;
  right: 4rem;
}

.chip-bottom {
  left: 0;
  bottom: 5.5rem;
}

.page-home .hero {
  min-height: calc(100vh - 4.5rem);
  padding-top: 2rem;
}

.page-home .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}

.page-home .hero-copy {
  max-width: 38rem;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.page-home .hero-title {
  max-width: 9.1ch;
  font-size: clamp(3.45rem, 6.1vw, 5.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

.page-home .hero-title span {
  display: block;
}

.page-home .hero-subtitle {
  max-width: 32rem;
  color: rgba(240, 231, 211, 0.78);
  font-size: 1.03rem;
  margin-bottom: 1.7rem;
}

.page-home .category-rail {
  max-width: 35rem;
  margin-top: 1.15rem;
}

.page-home .category-rail span {
  background: rgba(10, 42, 37, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.page-home .hero-visual {
  min-height: 46rem;
}

.home-hero-stage {
  position: relative;
  width: min(44rem, 100%);
  height: min(46rem, 74vw);
  min-height: 42rem;
  margin-left: auto;
  perspective: 2200px;
}

.home-hero-stage::before {
  content: "";
  position: absolute;
  inset: 10% 14% 12% 14%;
  border-radius: 45% 55% 48% 52% / 46% 38% 62% 54%;
  background:
    radial-gradient(circle at 42% 36%, rgba(242, 221, 180, 0.18), transparent 26%),
    radial-gradient(circle at 70% 58%, rgba(17, 80, 72, 0.62), transparent 30%),
    linear-gradient(180deg, rgba(13, 58, 51, 0.72), rgba(4, 22, 19, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 48px 120px rgba(0, 0, 0, 0.28);
  filter: blur(0.4px);
}

.home-hero-stage::after {
  content: "";
  position: absolute;
  inset: 16% 18% 16% 18%;
  border-radius: 50%;
  border: 1px solid rgba(217, 191, 130, 0.14);
  opacity: 0.5;
}

.hero-stage-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.hero-stage-glow-primary {
  top: 18%;
  left: 18%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(242, 221, 180, 0.18), transparent 68%);
}

.hero-stage-glow-secondary {
  right: 10%;
  bottom: 16%;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(17, 80, 72, 0.32), transparent 70%);
}

.hero-device-cluster {
  position: absolute;
  top: 2rem;
  left: 52%;
  width: min(20.5rem, 46%);
  z-index: 2;
}

.hero-phone-shell {
  width: 100%;
  margin: 0;
  padding: 0.82rem;
  border-radius: 3.35rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(11, 51, 46, 0.98), rgba(2, 17, 15, 1));
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.4);
}

.hero-phone-screen {
  min-height: 34rem;
  padding: 0.48rem;
}

.hero-screen-fit img {
  object-fit: cover;
  object-position: center top;
}

.hero-service-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 4.35rem minmax(0, 1fr);
  align-items: center;
  gap: 0.95rem;
  width: min(15.25rem, 40%);
  padding: 0.95rem;
  border-radius: 28px;
}

.hero-service-card > * {
  position: relative;
  z-index: 1;
}

.hero-service-card-salon {
  top: 2.5rem;
  left: 0;
}

.hero-service-card-clinic {
  top: 16.5rem;
  right: 0;
}

.hero-service-card-spa {
  bottom: 4.25rem;
  left: 2.25rem;
}

.hero-service-card-bridal {
  right: 0.8rem;
  bottom: 2.1rem;
}

.hero-service-thumb {
  display: grid;
  place-items: center;
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 20px;
  border: 1px solid rgba(217, 191, 130, 0.16);
  background:
    radial-gradient(circle at top left, rgba(242, 221, 180, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(16, 65, 57, 0.94), rgba(7, 34, 30, 0.98));
}

.hero-service-thumb img {
  width: 76%;
  max-height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.24));
}

.hero-service-copy strong {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--text);
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.hero-service-copy span {
  color: rgba(240, 218, 176, 0.72);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hero-stage-chip {
  position: absolute;
  z-index: 4;
  padding: 0.92rem 1.08rem;
  border-radius: 999px;
}

.hero-stage-chip span {
  position: relative;
  z-index: 1;
  color: var(--brand-gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-stage-chip-top {
  top: 1.4rem;
  right: 1.25rem;
}

.hero-stage-chip-bottom {
  right: 1.2rem;
  bottom: 1.6rem;
}

.ticker-section {
  padding: 1rem 0 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 1rem 0;
  color: rgba(242, 221, 180, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 48, 42, 0.58);
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.reason-copy h2,
.download-copy h2,
.form-intro h2 {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 620;
}

.story-grid,
.partner-benefits,
.services-grid,
.form-layout {
  display: grid;
  gap: 1.5rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.story-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.story-panel {
  grid-column: span 6;
  min-height: 32rem;
}

.story-panel-wide {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
}

.industry-card {
  grid-column: span 4;
  min-height: 28rem;
}

.industry-card-feature {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.premium-card,
.story-panel,
.service-card,
.reason-layout,
.download-panel,
.business-panel,
.form-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 20%),
    radial-gradient(circle at top left, rgba(242, 221, 180, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(10, 41, 36, 0.96), rgba(4, 19, 17, 0.98));
  box-shadow: var(--shadow);
  isolation: isolate;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.premium-card::before,
.story-panel::before,
.service-card::before,
.reason-layout::before,
.download-panel::before,
.business-panel::before,
.form-shell::before {
  content: "";
  position: absolute;
  inset: -22%;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(242, 221, 180, 0.18), transparent 18%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
  z-index: 0;
}

.premium-card::after,
.story-panel::after,
.service-card::after,
.reason-layout::after,
.download-panel::after,
.business-panel::after,
.form-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(242, 221, 180, 0.12) 45%, transparent 70%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.premium-card:hover,
.story-panel:hover,
.service-card:hover,
.reason-layout:hover,
.download-panel:hover,
.business-panel:hover,
.form-shell:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: 0 44px 140px rgba(0, 0, 0, 0.58);
}

.premium-card:hover::before,
.story-panel:hover::before,
.service-card:hover::before,
.reason-layout:hover::before,
.download-panel:hover::before,
.business-panel:hover::before,
.form-shell:hover::before,
.premium-card:hover::after,
.story-panel:hover::after,
.service-card:hover::after,
.reason-layout:hover::after,
.download-panel:hover::after,
.business-panel:hover::after,
.form-shell:hover::after {
  opacity: 1;
}

.premium-card:hover::after,
.story-panel:hover::after,
.service-card:hover::after,
.reason-layout:hover::after,
.download-panel:hover::after,
.business-panel:hover::after,
.form-shell:hover::after {
  animation: sheen 1.3s ease;
}

.story-copy,
.service-meta,
.reason-copy,
.download-copy,
.industry-copy,
.form-intro,
.form-shell {
  position: relative;
  z-index: 1;
}

.story-copy {
  padding: 2rem;
}

.story-copy h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
}

.story-copy p,
.service-meta p {
  margin: 0;
}

.visual-frame {
  position: relative;
  height: 100%;
  min-height: 28rem;
  display: grid;
  place-items: center;
  padding: 2rem;
  z-index: 1;
}

.visual-frame img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-panel:hover .visual-frame img,
.service-card:hover .service-media img {
  transform: scale(1.035) translateY(-4px);
}

.visual-frame.compact {
  min-height: 18.5rem;
  padding: 1.5rem;
}

.visual-frame.compact img {
  width: min(14.5rem, 74%);
  max-height: 14.5rem;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.story-panel-wide .visual-frame img {
  width: min(27rem, 82%);
  max-height: 24rem;
}

.industry-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 16.5rem;
  padding: 1.5rem;
  z-index: 1;
}

.industry-visual::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 30%, rgba(242, 221, 180, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(18, 78, 69, 0.72), rgba(6, 29, 25, 0.22));
  filter: blur(0.3px);
}

.industry-visual.icon img {
  position: relative;
  width: min(10rem, 58%);
  max-height: 10rem;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.28));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-visual.portrait {
  min-height: 26rem;
  padding: 1.5rem 0 1.5rem 1.5rem;
}

.industry-visual.portrait img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-copy {
  padding: 0 2rem 2rem;
}

.industry-card-feature .industry-copy {
  padding: 2rem 2rem 2rem 1rem;
}

.industry-copy h3 {
  margin: 0.85rem 0 0.5rem;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 620;
  letter-spacing: -0.04em;
}

.industry-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.industry-card:hover .industry-visual img {
  transform: scale(1.05);
}

.services-grid,
.partner-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.partner-benefits .story-panel {
  min-height: 28rem;
}

.service-card {
  min-height: 33rem;
}

.service-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 19rem;
  padding: 1.5rem 1.5rem 0;
  z-index: 1;
}

.service-media img {
  width: min(13.25rem, 78%);
  max-height: 13.25rem;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.26));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-meta {
  padding: 0 2rem 2rem;
}

.service-meta h3 {
  margin: 0.9rem 0 0.55rem;
  font-size: 2rem;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.reason-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: center;
  padding: 2.2rem;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.reason-list article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(13, 51, 44, 0.54);
}

.reason-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  font-weight: 600;
}

.reason-visual {
  display: grid;
  place-items: center;
  min-height: 36rem;
}

.reason-visual img {
  width: min(34rem, 92%);
}

.brand-ribbon {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.9fr) minmax(0, 0.75fr);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
}

.brand-ribbon-visual {
  display: grid;
  place-items: center;
}

.brand-ribbon-visual img {
  width: min(17rem, 100%);
  border-radius: 32px;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.32);
}

.brand-ribbon-copy h2 {
  margin: 0.8rem 0 0.9rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.brand-ribbon-copy p {
  margin: 0;
}

.partner-proof-grid {
  display: grid;
  gap: 0.9rem;
}

.partner-proof-grid article {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(13, 51, 44, 0.54);
}

.partner-proof-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  font-weight: 600;
}

.partner-proof-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.partner-ribbon-cta {
  align-self: end;
  justify-self: start;
  grid-column: 2 / span 2;
}

.presence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: center;
  padding: 2.2rem;
}

.presence-copy h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.presence-copy p {
  margin: 0 0 1.8rem;
}

.presence-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.presence-stats article {
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(13, 51, 44, 0.54);
}

.presence-stats strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-gold-soft);
  font-size: 1.1rem;
  font-weight: 600;
}

.presence-stats span {
  color: var(--muted);
  line-height: 1.55;
}

.presence-map-column {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.2rem;
}

.map-caption span {
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.map-caption strong {
  color: var(--brand-gold-soft);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.india-map-shell {
  position: relative;
  width: min(39rem, 100%);
  aspect-ratio: 420 / 332;
  margin: 0 auto;
  padding: 1.2rem;
  border-radius: 36px;
  border: 1px solid rgba(217, 191, 130, 0.18);
  background:
    radial-gradient(circle at 22% 18%, rgba(242, 221, 180, 0.12), transparent 22%),
    radial-gradient(circle at 78% 82%, rgba(242, 221, 180, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(10, 50, 45, 0.92), rgba(4, 23, 20, 0.98));
  overflow: hidden;
}

.india-map-shell::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(217, 191, 130, 0.08);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 72%);
  opacity: 1;
  pointer-events: none;
}

.map-overlay-copy {
  position: absolute;
  inset: 1.2rem 1.35rem auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.map-overlay-copy span {
  color: rgba(240, 218, 176, 0.72);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.map-overlay-copy strong {
  color: var(--brand-gold-soft);
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.india-map-frame {
  position: absolute;
  top: 56%;
  left: 39%;
  width: min(61%, 23.5rem);
  aspect-ratio: 522 / 478;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.india-map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.96;
  filter:
    brightness(0)
    saturate(100%)
    invert(90%)
    sepia(27%)
    saturate(632%)
    hue-rotate(349deg)
    brightness(99%)
    contrast(96%)
    drop-shadow(0 0 18px rgba(242, 221, 180, 0.2))
    drop-shadow(0 18px 42px rgba(0, 0, 0, 0.32));
}

.india-map-points {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-point {
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  transform: translate(-50%, -50%);
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
}

.map-point::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1.6rem;
  height: 1.6rem;
  transform: translate(-50%, -50%) scale(0.9);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 221, 180, 0.18), transparent 72%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.map-point-dot {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.44rem;
  height: 0.44rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 247, 224, 0.96);
  box-shadow:
    0 0 0 4px rgba(242, 221, 180, 0.14),
    0 0 16px rgba(242, 221, 180, 0.32);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.map-point:hover::before,
.map-point:focus-visible::before,
.map-point.is-active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.map-point:hover .map-point-dot,
.map-point:focus-visible .map-point-dot,
.map-point.is-active .map-point-dot {
  transform: translate(-50%, -50%) scale(1.22);
  background: rgba(255, 248, 229, 1);
  box-shadow:
    0 0 0 6px rgba(242, 221, 180, 0.16),
    0 0 20px rgba(242, 221, 180, 0.4);
}

.map-point:focus-visible {
  outline: none;
}

.map-region-panel {
  position: absolute;
  top: 4.4rem;
  right: 1.25rem;
  z-index: 3;
  width: min(11.1rem, 29%);
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(217, 191, 130, 0.18);
  background:
    linear-gradient(180deg, rgba(14, 49, 44, 0.86), rgba(4, 24, 22, 0.94));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.map-region-panel::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: -0.42rem;
  width: 0.82rem;
  height: 0.82rem;
  transform: rotate(45deg);
  border-left: 1px solid rgba(217, 191, 130, 0.18);
  border-bottom: 1px solid rgba(217, 191, 130, 0.18);
  background: rgba(10, 38, 34, 0.96);
}

.map-region-kicker {
  color: rgba(240, 218, 176, 0.7);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.64rem;
}

.map-region-name {
  color: var(--soft-white);
  font-size: 1.25rem;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.map-region-summary {
  margin: 0;
  color: rgba(233, 229, 217, 0.72);
  font-size: 0.82rem;
  line-height: 1.62;
}

.map-region-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  max-height: 9.5rem;
  overflow: auto;
  padding-right: 0.18rem;
}

.map-region-cities::-webkit-scrollbar {
  width: 4px;
}

.map-region-cities::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(217, 191, 130, 0.28);
}

.map-region-city {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 191, 130, 0.14);
  background: rgba(12, 48, 42, 0.62);
  color: var(--brand-gold-soft);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.presence-marquee {
  margin-top: 1.5rem;
  padding: 1rem 0;
  overflow: hidden;
}

.presence-marquee-track {
  display: flex;
  gap: 0.95rem;
  width: max-content;
  padding: 0 1rem;
  animation: cityCloud 52s linear infinite;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(12, 48, 42, 0.58);
  color: var(--brand-gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
}

.app-stage {
  padding: 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(217, 191, 130, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(217, 191, 130, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(10, 54, 50, 0.96), rgba(5, 33, 30, 0.98));
  border-color: rgba(217, 191, 130, 0.22);
}

.app-stage::before {
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(240, 218, 176, 0.22), transparent 20%);
}

.app-stage-topline {
  text-align: center;
}

.app-stage-topline p {
  margin: 0;
  color: rgba(240, 218, 176, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.app-stage-logo {
  display: grid;
  place-items: center;
  margin: 1.8rem auto 2.2rem;
}

.app-stage-logo img {
  width: min(11rem, 42vw);
  border-radius: 28px;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
}

.dual-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.dual-app-grid.single-app-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 42rem;
  margin: 0 auto;
}

.single-app-grid .download-phone {
  max-width: 42rem;
  margin: 0 auto;
}

.download-phone {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(13, 55, 50, 0.92), rgba(7, 35, 32, 0.95));
  border-color: rgba(217, 191, 130, 0.18);
}

.download-phone .hero-actions {
  position: relative;
  z-index: 1;
}

.phone-shell {
  position: relative;
  width: min(18rem, 100%);
  margin: 0 auto 1.5rem;
  padding: 0.9rem;
  border-radius: 3.2rem;
  border: 1px solid rgba(240, 218, 176, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(9, 43, 39, 0.96), rgba(3, 20, 18, 0.98));
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.28);
}

.phone-shell::after {
  content: "";
  position: absolute;
  inset: auto 16% -2rem 16%;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  filter: blur(18px);
}

.phone-notch {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  width: 3.8rem;
  height: 0.42rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(240, 218, 176, 0.26);
  z-index: 2;
}

.phone-screen {
  position: relative;
  min-height: 32rem;
  padding: 1.7rem;
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at 50% 78%, rgba(240, 218, 176, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(10, 49, 45, 0.98), rgba(6, 36, 33, 0.98));
  border: 1px solid rgba(240, 218, 176, 0.16);
  overflow: hidden;
}

.phone-screen.business {
  background:
    radial-gradient(circle at 50% 78%, rgba(240, 218, 176, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(13, 57, 52, 0.98), rgba(5, 33, 30, 0.98));
}

.phone-screen.has-preview {
  padding: 1.2rem 1rem 1.35rem;
}

.phone-screen.app-open-screen {
  min-height: 33.8rem;
  padding: 0.45rem;
  background:
    linear-gradient(180deg, rgba(13, 56, 50, 0.98), rgba(5, 30, 27, 0.99));
}

.phone-screen.app-open-screen .phone-orb {
  display: none;
}

.phone-screen.has-preview .phone-label {
  margin-top: 0;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  position: relative;
  z-index: 3;
}

.phone-label {
  display: block;
  margin-top: 6rem;
  text-align: center;
  color: var(--brand-gold-soft);
  font-size: 1.45rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.screen-stack {
  position: relative;
  min-height: 24rem;
  margin-top: 1rem;
  z-index: 2;
}

.screen-single-fit {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 2.15rem;
  border: none;
  background: transparent;
  box-shadow: none;
  z-index: 2;
  overflow: hidden;
}

.screen-single-fit::after {
  content: none;
}

.screen-single-fit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: 2.05rem;
  background: #f6f3ef;
}

.screen-card {
  position: absolute;
  overflow: hidden;
  border-radius: 1.55rem;
  border: 1px solid rgba(240, 218, 176, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    rgba(3, 20, 18, 0.72);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.screen-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.screen-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.screen-card-main {
  z-index: 1;
}

.screen-card-left,
.screen-card-right {
  z-index: 2;
}

.user-preview-stack .screen-card-main {
  inset: 0.3rem 2rem auto 2rem;
  height: 18.5rem;
}

.user-preview-stack .screen-card-left {
  left: 0;
  bottom: 0.9rem;
  width: 7.2rem;
  height: 11.6rem;
  transform: rotate(-8deg);
}

.user-preview-stack .screen-card-right {
  right: 0;
  bottom: 0.8rem;
  width: 7.2rem;
  height: 11.8rem;
  transform: rotate(8deg);
}

.business-preview-stack .screen-card-main {
  inset: 0.5rem 3rem auto 1rem;
  height: 22rem;
}

.business-preview-stack .screen-card-right {
  right: 0;
  bottom: 1rem;
  width: 7rem;
  height: 12rem;
  transform: rotate(8deg);
}

.storefront-preview-stack .screen-card-main {
  inset: 0.5rem 1.8rem auto 1.8rem;
  height: 22rem;
}

.storefront-preview-stack .screen-card-left {
  left: 0;
  bottom: 1rem;
  width: 7.1rem;
  height: 11.8rem;
  transform: rotate(-8deg);
}

.phone-orb {
  position: absolute;
  left: 50%;
  bottom: -6rem;
  width: 16rem;
  height: 16rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 218, 176, 0.14), rgba(240, 218, 176, 0.04) 48%, transparent 70%);
  filter: blur(0.3px);
}

.phone-copy {
  position: relative;
  z-index: 1;
  margin-bottom: 1.2rem;
}

.phone-copy h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.phone-copy p {
  margin: 0;
  color: rgba(240, 218, 176, 0.72);
  line-height: 1.75;
}

.app-stage-footer {
  position: relative;
  z-index: 1;
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(240, 218, 176, 0.14);
  text-align: center;
}

.app-stage-footer span {
  color: rgba(240, 218, 176, 0.74);
  letter-spacing: 0.08em;
}

.site-footer {
  padding: 1rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(5, 24, 21, 0.82);
  backdrop-filter: blur(20px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links p {
  margin: 0;
}

.partner-hero .hero-title {
  font-size: clamp(3.7rem, 8vw, 7rem);
}

.partner-stage .hero-sculpture {
  top: 1rem;
  left: 5rem;
  width: min(38rem, 72%);
}

.form-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.business-panel {
  margin-top: 2rem;
  padding: 2rem;
}

.form-shell {
  padding: 2rem;
}

.partner-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.input-wrap {
  display: grid;
  gap: 0.55rem;
}

.input-wrap span {
  color: var(--brand-gold-soft);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.input-wrap input {
  width: 100%;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(14, 54, 47, 0.44);
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.input-wrap input::placeholder {
  color: rgba(193, 183, 160, 0.72);
}

.input-wrap input:focus {
  border-color: var(--line-strong);
  background: rgba(16, 64, 56, 0.56);
  transform: translateY(-1px);
}

.full-width {
  width: 100%;
}

.form-note,
.form-status {
  margin: 0;
}

.form-status {
  min-height: 1.6rem;
  color: var(--brand-gold-soft);
}

.motion-card {
  --parallax-x: 0px;
  --parallax-y: 0px;
  --tilt-x: 0px;
  --tilt-y: 0px;
  --rx: 0deg;
  --ry: 0deg;
  --scale: 1;
  transform: var(--base-transform, none) translate3d(calc(var(--parallax-x) + var(--tilt-x)), calc(var(--parallax-y) + var(--tilt-y)), 0) rotateX(var(--rx)) rotateY(var(--ry)) scale(var(--scale));
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.float-slow {
  animation: drift 9s ease-in-out infinite;
}

.float-fast {
  animation: drift 6.5s ease-in-out infinite;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(242, 221, 180, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(3, 20, 17, 0.98), rgba(4, 18, 15, 0.98));
  transition:
    opacity 900ms ease,
    visibility 900ms ease;
}

.splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 221, 180, 0.18);
  animation: ringPulse 3.2s ease-in-out infinite;
}

.ring-one {
  width: 12rem;
  height: 12rem;
}

.ring-two {
  width: 18rem;
  height: 18rem;
  animation-delay: 0.3s;
}

.ring-three {
  width: 24rem;
  height: 24rem;
  animation-delay: 0.55s;
}

.splash-mark {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(242, 221, 180, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 44px rgba(0, 0, 0, 0.34);
}

.splash-screen p {
  margin: 1.5rem 0 0.6rem;
  color: rgba(242, 221, 180, 0.72);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.splash-title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 620;
  letter-spacing: -0.06em;
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.985);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes drift {
  0%,
  100% {
    transform: var(--base-transform, none) translate3d(calc(var(--parallax-x) + var(--tilt-x)), calc(var(--parallax-y) + var(--tilt-y)), 0) rotateX(var(--rx)) rotateY(var(--ry)) scale(var(--scale));
  }
  50% {
    transform: var(--base-transform, none) translate3d(calc(var(--parallax-x) + var(--tilt-x)), calc(var(--parallax-y) + var(--tilt-y) - 14px), 0) rotateX(var(--rx)) rotateY(var(--ry)) scale(var(--scale));
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes sheen {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes cityCloud {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .page-home .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.8rem;
  }

  .page-home .hero-copy {
    order: 1;
    max-width: none;
  }

  .page-home .hero-visual {
    order: 2;
    width: 100%;
    display: grid;
    justify-items: center;
    align-self: start;
    margin-top: 1.25rem;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .reason-layout,
  .download-panel,
  .brand-ribbon,
  .presence-layout,
  .form-layout,
  .footer-grid,
  .story-panel-wide,
  .industry-card-feature {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .story-panel,
  .story-panel-wide,
  .industry-card,
  .industry-card-feature {
    grid-column: auto;
  }

  .services-grid,
  .dual-app-grid,
  .reason-list,
  .presence-stats {
    grid-template-columns: 1fr 1fr;
  }

  .dual-app-grid.single-app-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual,
  .partner-hero .hero-visual {
    min-height: 40rem;
  }

  .hero-sculpture {
    left: 0;
  }

  .partner-stage .hero-sculpture {
    left: 2rem;
  }

  .page-home .hero-copy {
    max-width: none;
    padding-bottom: 0;
  }

  .page-home .hero-title {
    max-width: none;
    font-size: clamp(3.15rem, 6.3vw, 4.7rem);
    line-height: 0.95;
    text-wrap: balance;
  }

  .page-home .hero-title span {
    display: inline;
  }

  .page-home .hero-subtitle {
    max-width: 34rem;
  }

  .page-home .hero-visual {
    min-height: 38rem;
    margin-top: 0.75rem;
  }

  .home-hero-stage {
    width: min(38rem, 100%);
    height: 38rem;
    min-height: 38rem;
    margin: 0 auto;
  }

  .hero-device-cluster {
    left: 50%;
    width: min(17.5rem, 44%);
  }

  .hero-service-card {
    width: min(12.4rem, 36%);
    padding: 0.78rem;
    border-radius: 24px;
  }

  .hero-service-card-salon {
    left: 0.5rem;
  }

  .hero-service-card-clinic {
    top: 15.5rem;
    right: 0.5rem;
  }

  .hero-service-card-spa {
    bottom: 3rem;
    left: 1.4rem;
  }

  .hero-service-card-bridal {
    right: 0.5rem;
    bottom: 1.2rem;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  .section-heading h2,
  .story-copy h3,
  .reason-copy h2,
  .download-copy h2,
  .form-intro h2,
  .partner-hero .hero-title,
  .phone-copy h3 {
    line-height: 1.02;
  }

  .top-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 0.9rem;
    border-radius: 28px;
  }

  .brand {
    width: 100%;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text small {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(10, 39, 35, 0.62);
    font-size: 0.92rem;
    text-align: center;
  }

  .nav-links .nav-cta {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: auto;
    padding-top: 1.1rem;
  }

  .hero-title {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }

  .partner-hero .hero-title {
    max-width: 9ch;
    font-size: clamp(2.75rem, 11vw, 4.1rem);
  }

  .hero-visual,
  .partner-hero .hero-visual {
    min-height: 34rem;
  }

  .hero-sculpture {
    width: min(21rem, 74%);
    top: 1rem;
  }

  .hero-device {
    width: min(17rem, 60%);
    bottom: 0;
  }

  .chip-top {
    top: 1rem;
    right: 0;
  }

  .chip-bottom {
    left: 0;
    bottom: 2rem;
  }

  .page-home .hero-copy {
    padding-top: 0.25rem;
    padding-bottom: 0;
  }

  .page-home .hero-title {
    max-width: none;
    margin: 0.6rem 0 0.85rem;
    font-size: clamp(2.5rem, 10.8vw, 3.8rem);
    line-height: 0.93;
    text-wrap: balance;
  }

  .page-home .hero-title span {
    display: inline;
  }

  .page-home .hero-subtitle {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .hero-proof {
    width: 100%;
    display: grid;
    justify-content: start;
    gap: 0.3rem;
    margin-top: 0.95rem;
    padding: 0.82rem 0.9rem;
    border-radius: 22px;
  }

  .hero-proof strong {
    font-size: 0.84rem;
  }

  .page-home .category-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.9rem;
    max-width: none;
    width: 100%;
  }

  .page-home .category-rail span {
    font-size: 0.64rem;
    letter-spacing: 0.04em;
    padding: 0.6rem 0.78rem;
    justify-content: center;
    text-align: center;
  }

  .page-home .hero-visual {
    min-height: 28rem;
    margin-top: 1.65rem;
    padding-top: 0.25rem;
  }

  .home-hero-stage {
    width: min(100%, 24rem);
    height: 28rem;
    min-height: 28rem;
    margin: 0 auto;
    overflow: hidden;
  }

  .home-hero-stage::before {
    inset: 8% 10% 10% 10%;
  }

  .home-hero-stage::after {
    inset: 12% 14% 14% 14%;
  }

  .hero-stage-glow-primary {
    top: 16%;
    left: 12%;
    width: 9rem;
    height: 9rem;
  }

  .hero-stage-glow-secondary {
    right: 7%;
    bottom: 11%;
    width: 7rem;
    height: 7rem;
  }

  .hero-device-cluster {
    top: 1rem;
    left: 60%;
    width: min(11.25rem, 52%);
    --base-transform: translate(-50%, 0) rotate(0deg) !important;
  }

  .hero-phone-screen {
    min-height: 18.2rem;
  }

  .hero-service-card {
    grid-template-columns: 2.3rem minmax(0, 1fr);
    gap: 0.45rem;
    width: min(9.25rem, 45%);
    padding: 0.56rem;
    border-radius: 18px;
  }

  .hero-service-thumb {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 12px;
  }

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

  .hero-service-copy span {
    display: none;
  }

  .hero-service-card-salon {
    top: 1rem;
    left: 0.35rem;
  }

  .hero-service-card-clinic {
    top: 14rem;
    right: 0.3rem;
    left: auto;
  }

  .hero-service-card-spa {
    left: 0.15rem;
    top: 7.2rem;
  }

  .hero-service-card-bridal {
    top: 20.2rem;
    right: 0.45rem;
    left: auto;
  }

  .hero-stage-chip {
    padding: 0.72rem 0.94rem;
  }

  .hero-stage-chip span {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero-stage-chip-top {
    top: 0.6rem;
    right: 0.4rem;
  }

  .hero-stage-chip-bottom {
    right: 0.4rem;
    bottom: 0.9rem;
  }

  .services-grid,
  .partner-benefits,
  .reason-list,
  .dual-app-grid,
  .presence-stats {
    grid-template-columns: 1fr;
  }

  .reason-layout,
  .download-panel,
  .brand-ribbon,
  .presence-layout,
  .story-copy,
  .industry-copy,
  .business-panel,
  .form-shell,
  .footer-grid {
    padding: 1.5rem;
  }

  .app-stage,
  .download-phone {
    padding: 1.4rem;
  }

  .story-panel,
  .service-card {
    min-height: auto;
  }

  .visual-frame,
  .visual-frame.compact,
  .industry-visual,
  .industry-visual.portrait,
  .service-media,
  .reason-visual {
    min-height: 18rem;
    padding: 1.5rem;
  }

  .india-map-shell {
    width: 100%;
    max-width: 28rem;
    aspect-ratio: auto;
    min-height: 34rem;
  }

  .map-overlay-copy {
    inset: 1rem 1.1rem auto;
  }

  .india-map-frame {
    top: 7.25rem;
    left: 50%;
    width: min(84%, 20rem);
    transform: translateX(-50%);
  }

  .map-region-panel {
    top: auto;
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    width: auto;
  }

  .map-region-panel::before {
    display: none;
  }

  .industry-card-feature .industry-copy {
    padding: 0 1.5rem 1.5rem;
  }

  .partner-ribbon-cta {
    grid-column: auto;
  }

  .phone-shell {
    width: min(16rem, 100%);
  }

  .phone-screen {
    min-height: 26rem;
  }

  .screen-stack {
    min-height: 20rem;
  }

  .screen-single-fit {
    height: 100%;
  }

  .user-preview-stack .screen-card-main,
  .business-preview-stack .screen-card-main,
  .storefront-preview-stack .screen-card-main {
    height: 18rem;
  }

  .user-preview-stack .screen-card-left,
  .user-preview-stack .screen-card-right,
  .business-preview-stack .screen-card-right,
  .storefront-preview-stack .screen-card-left {
    width: 5.75rem;
    height: 9.5rem;
  }

  .button,
  .full-width {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .container {
    width: calc(100% - 1rem);
  }

  .site-header {
    padding-top: 0.7rem;
  }

  .top-nav {
    border-radius: 24px;
  }

  .eyebrow,
  .micro-label,
  .service-index {
    gap: 0.45rem;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .eyebrow::before,
  .micro-label::before {
    width: 20px;
  }

  .page-home .hero-title {
    max-width: none;
    font-size: clamp(2.28rem, 11.2vw, 3.15rem);
    line-height: 0.94;
  }

  .section-heading h2,
  .story-copy h3,
  .reason-copy h2,
  .download-copy h2,
  .form-intro h2,
  .partner-hero .hero-title,
  .phone-copy h3 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .page-home .hero-subtitle {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .home-hero-stage {
    width: min(100%, 21rem);
    height: 24rem;
    min-height: 24rem;
    margin-top: 0.2rem;
  }

  .hero-device-cluster {
    top: 0.95rem;
    left: 60%;
    width: min(9.2rem, 49%);
  }

  .hero-phone-screen {
    min-height: 15.4rem;
  }

  .hero-service-card {
    width: min(8rem, 44%);
    padding: 0.5rem;
  }

  .hero-service-thumb {
    width: 2.2rem;
    height: 2.2rem;
  }

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

  .hero-service-card-salon {
    top: 0.9rem;
    left: 0.2rem;
  }

  .hero-service-card-spa {
    top: 6.1rem;
    left: 0.1rem;
  }

  .hero-service-card-clinic {
    top: 11.6rem;
    right: 0.12rem;
    left: auto;
  }

  .hero-service-card-bridal {
    top: 17.2rem;
    right: 0.16rem;
    left: auto;
  }

  .page-home .category-rail {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .category-rail span {
    font-size: 0.58rem;
    padding: 0.55rem 0.6rem;
  }

  .hero-proof span {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero-proof strong {
    font-size: 0.78rem;
  }

  .story-copy,
  .industry-copy,
  .reason-copy,
  .download-copy,
  .form-intro,
  .form-shell,
  .business-panel,
  .download-panel,
  .brand-ribbon,
  .presence-layout,
  .footer-grid {
    padding: 1.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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