/* CraNau India — marketing design system */
:root {
  --violet: #7c3aed;
  --violet-dark: #5b21b6;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --green: #22c55e;
  --amber: #f59e0b;
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --slate: #64748b;
  --mist: #f8fafc;
  --white: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 12px 32px rgba(124, 58, 237, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Urbanist", "Inter", system-ui, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--violet);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--violet-dark);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--violet);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 9999;
}

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

/* Background */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float 18s var(--ease) infinite alternate;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(124, 58, 237, 0.35);
  top: -120px;
  right: -80px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: rgba(6, 182, 212, 0.28);
  bottom: 10%;
  left: -100px;
  animation-delay: -6s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: rgba(236, 72, 153, 0.22);
  top: 40%;
  right: 20%;
  animation-delay: -12s;
}

@keyframes float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(30px, -40px, 0) scale(1.08);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
}

.brand img {
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.brand-accent {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  margin-left: auto;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-switcher-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lang-select {
  appearance: none;
  padding: 0.42rem 1.75rem 0.42rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
    no-repeat right 0.5rem center;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-select:hover,
.lang-select:focus {
  border-color: rgba(124, 58, 237, 0.35);
  color: var(--violet);
  outline: none;
}

html[lang="hi"] body {
  font-family: var(--font-body);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
}

.nav-primary a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-primary a:hover,
.nav-primary a.is-active {
  color: var(--violet);
}

.nav-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-menu-btn:hover,
.nav-menu-btn[aria-expanded="true"] {
  border-color: rgba(124, 58, 237, 0.35);
  color: var(--violet);
  box-shadow: var(--shadow-soft);
}

.nav-drawer {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 120;
  min-width: 15.5rem;
  max-width: min(18rem, calc(100vw - 2rem));
  max-height: min(70vh, 32rem);
  overflow-y: auto;
  padding: 0.65rem 0;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer-label {
  margin: 0.35rem 1rem 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav-drawer a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-drawer a:hover,
.nav-drawer a.is-active {
  color: var(--violet);
  background: rgba(124, 58, 237, 0.06);
}

.nav-cta {
  color: var(--violet) !important;
  font-weight: 700 !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--violet), #9333ea);
  color: white;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--border);
}

.btn-ghost {
  background: rgba(124, 58, 237, 0.08);
  color: var(--violet);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-light {
  background: white;
  color: var(--violet-dark);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-tight {
  padding: 2rem 0 3rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 250, 252, 0.4));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--violet);
  margin: 0 0 0.75rem;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.12;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.section-head p:last-child {
  color: var(--slate);
  margin: 0;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.85rem);
  line-height: 1.02;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--violet), var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: var(--violet-dark);
  margin: 0 0 0.85rem;
  letter-spacing: -0.01em;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--slate);
  max-width: 520px;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-dark);
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.pill-accent {
  color: #047857;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.22);
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  animation: bob 5s var(--ease) infinite;
}

.hero-float-1 {
  bottom: 12%;
  left: -4%;
}

.hero-float-2 {
  top: 10%;
  right: -2%;
  animation-delay: -2s;
}

.float-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.hero-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1.2;
}

.hero-float span {
  display: block;
  font-size: 0.72rem;
  color: var(--slate);
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s var(--ease);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin: 0.35rem 0 0;
  color: var(--slate);
  font-size: 0.88rem;
}

/* Customer strip */
.customer-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.customer-strip-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.25rem;
}

.customer-strip-copy p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

/* Ecosystem rail */
.eco-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.eco-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.eco-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(124, 58, 237, 0.25);
  color: var(--violet-dark);
}

.eco-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--chip) 12%, white);
  font-size: 1.1rem;
}

/* Spotlight sections */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.spotlight-reverse .spotlight-media {
  order: 2;
}

.spotlight-reverse .spotlight-copy {
  order: 1;
}

.spotlight-media {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.spotlight-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.spotlight:hover .spotlight-media img {
  transform: scale(1.03);
}

.spotlight-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: var(--accent, var(--violet));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.spotlight-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.spotlight-copy p {
  color: var(--slate);
  margin: 0 0 1rem;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.impact-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.impact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
}

.impact-list strong {
  color: var(--ink);
}

/* Growth bento */
.growth-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.growth-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s var(--ease);
}

.growth-card:hover {
  transform: translateY(-4px);
}

.growth-card-hero {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.growth-card-hero img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.growth-card-hero div {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.growth-card-hero h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.65rem;
}

.growth-card-hero p {
  margin: 0;
  color: var(--slate);
}

.growth-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.65rem;
}

.growth-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.45rem;
}

.growth-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

/* Legacy compare */
.legacy-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.legacy-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.legacy-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
}

.legacy-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--slate);
}

.legacy-card li {
  margin-bottom: 0.5rem;
}

.legacy-card-old {
  background: #f1f5f9;
}

.legacy-card-old h3 {
  color: var(--slate);
}

.legacy-card-new {
  background: white;
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: var(--shadow-soft);
}

.legacy-card-new h3 {
  color: var(--violet-dark);
}

.legacy-card-new li::marker {
  color: var(--green);
}

/* Journey */
.journey-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.journey-step {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  border: 1px solid var(--border);
}

.journey-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.journey-step h4 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
}

.journey-step p {
  margin: 0;
  color: var(--slate);
  font-size: 0.88rem;
}

.journey-cta {
  white-space: nowrap;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  text-align: center;
  position: relative;
}

.about-visual img {
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.12));
  font-weight: 600;
  font-size: 0.9rem;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 1rem;
}

.about-copy p {
  color: var(--slate);
  margin: 0 0 1rem;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.company-facts dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 0.2rem;
}

.company-facts dd {
  margin: 0;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--ink);
}

.company-facts dd a {
  font-weight: 600;
}

.company-facts-wide {
  grid-column: span 2;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Contact panel */
.contact-panel {
  padding-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s var(--ease);
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.65rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.contact-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-card .btn {
  margin-top: 1rem;
}

.store-buttons-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.store-soon {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
}

/* Franchise */
.franchise-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.franchise-duties {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.06), rgba(6, 182, 212, 0.05));
  border-radius: var(--radius);
  border: 1px solid rgba(124, 58, 237, 0.14);
}

.franchise-duty-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.franchise-duty-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.franchise-duty-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
}

.franchise-tier-note,
.franchise-market-sources {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.5;
}

.market-table td {
  vertical-align: top;
}

.franchise-projection {
  margin-bottom: 1.5rem;
}

.projection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.projection-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.projection-card-featured {
  border-color: rgba(124, 58, 237, 0.28);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.07), rgba(6, 182, 212, 0.05));
  box-shadow: var(--shadow-soft);
}

.projection-card h4 {
  margin: 0.5rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

.projection-stats {
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.projection-stats dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate);
  margin-bottom: 0.2rem;
}

.projection-stats dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.projection-stats strong {
  font-family: var(--font-display);
  color: var(--violet-dark);
  font-size: 1.02rem;
}

.franchise-effort-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(124, 58, 237, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.franchise-effort-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.franchise-effort-banner p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  margin-right: 0.35rem;
  color: white;
}

.tier-a {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
}

.tier-b {
  background: linear-gradient(135deg, #0891b2, #0284c7);
}

.tier-c {
  background: linear-gradient(135deg, #059669, #0d9488);
}

.tier-d {
  background: linear-gradient(135deg, #d97706, #ca8a04);
}

.tier-table td:first-child {
  font-weight: 600;
  white-space: nowrap;
}

.calc-field-hint {
  grid-column: 1 / -1;
  margin: -0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--slate);
  line-height: 1.45;
}

.franchise-ramp {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.franchise-ramp-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}

.franchise-ramp-lead {
  margin: 0 0 1rem;
  color: var(--slate);
  font-size: 0.92rem;
}

.ramp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.ramp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.ramp-table th,
.ramp-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.ramp-table th {
  background: var(--mist);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ramp-table tbody tr:last-child td {
  border-bottom: none;
}

.ramp-you {
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--violet-dark);
}

.franchise-note-center {
  text-align: center;
  margin-bottom: 1.25rem;
}

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 0.75rem;
}

.franchise-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.franchise-card-hero {
  grid-column: span 3;
}

.franchise-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.65rem;
}

.franchise-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.franchise-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.55;
}

.franchise-card .impact-list {
  margin-top: 1rem;
  margin-bottom: 0;
}

.franchise-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--slate);
  font-style: italic;
}

.franchise-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Franchise spotlight (top) */
.franchise-spotlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #4c1d95 0%, #7c3aed 42%, #0891b2 100%);
  color: white;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.franchise-spotlight-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 65%
  );
  animation: spotlight-shine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes spotlight-shine {
  0%,
  100% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(120%);
  }
}

.franchise-spotlight-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.franchise-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.45rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.franchise-spotlight-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.35;
}

.franchise-spotlight-title strong {
  color: #fde68a;
}

.franchise-spotlight-sub {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  opacity: 0.9;
}

.franchise-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.nav-franchise {
  position: relative;
}

.nav-franchise::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.nav-franchise.is-active::after,
.nav-franchise:hover::after {
  opacity: 1;
}

/* Break-even calculator */
.calc-panel {
  margin: 2rem 0 1.25rem;
  padding: 1.75rem;
  background: white;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.calc-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.calc-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0.25rem 0 0.5rem;
}

.calc-lead {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
  max-width: 52ch;
}

.calc-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.calc-preset {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--mist);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.calc-preset:hover,
.calc-preset.is-active {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.35);
  color: var(--violet-dark);
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.05fr);
  gap: 1.5rem;
  align-items: start;
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  padding: 1.25rem;
  background: var(--mist);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.calc-group-title {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
}

.calc-group-title:first-child {
  margin-top: 0;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.calc-field span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.calc-field input,
.calc-field select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: white;
  font: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-result-hero {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(124, 58, 237, 0.18);
}

.calc-result-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
}

.calc-result-big {
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--violet-dark);
  letter-spacing: -0.02em;
}

.calc-status-pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.calc-status-pill.status-profit {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
}

.calc-status-pill.status-neutral {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
}

.calc-status-pill.status-loss {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.calc-result-card {
  padding: 0.9rem 1rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.calc-result-card span {
  display: block;
  font-size: 0.72rem;
  color: var(--slate);
  margin-bottom: 0.25rem;
}

.calc-result-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}

.calc-result-card-accent {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(124, 58, 237, 0.06));
  border-color: rgba(124, 58, 237, 0.2);
}

.calc-result-card-accent strong.calc-positive {
  color: #15803d;
}

.calc-result-card-accent strong.calc-negative {
  color: #b91c1c;
}

.calc-result-card-accent strong.calc-neutral {
  color: var(--amber);
}

.calc-progress {
  padding: 1rem 1.1rem;
  background: var(--mist);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.calc-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.55rem;
}

.calc-progress-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.calc-progress-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transition: width 0.45s var(--ease);
}

.calc-progress-bar.bar-profit {
  background: linear-gradient(90deg, #22c55e, #06b6d4);
}

.calc-progress-note {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: var(--slate);
}

.calc-apply-btn {
  width: 100%;
  text-align: center;
}

/* Apps */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.app-grid-duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-inline: auto;
}

.app-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.app-card-visual {
  padding: 0;
  overflow: hidden;
}

.app-card-media {
  overflow: hidden;
}

.app-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.app-card-visual:hover .app-card-media img {
  transform: scale(1.04);
}

.app-card-visual .app-tag,
.app-card-visual h3,
.app-card-visual p,
.app-card-visual .store-buttons {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.app-card-visual .app-tag {
  margin-top: 1.15rem;
}

.app-card-visual .store-buttons {
  margin-bottom: 1.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.app-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.12);
  color: #0891b2;
  margin-bottom: 0.65rem;
}

.app-tag-admin {
  background: rgba(124, 58, 237, 0.12);
  color: var(--violet-dark);
}

.app-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.app-card p {
  color: var(--slate);
  font-size: 0.92rem;
  flex: 1;
  margin: 0;
}

.store-btn {
  display: inline-flex;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
}

.store-btn:hover {
  color: white;
  background: var(--ink-soft);
  transform: translateY(-1px);
}

.store-btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
}

.store-btn-primary:hover {
  background: linear-gradient(135deg, var(--violet-dark), #0891b2);
}

/* Quotes */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote {
  margin: 0;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.quote p {
  font-size: 1rem;
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--ink-soft);
}

.quote footer {
  color: var(--slate);
  font-size: 0.82rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.faq-list details {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.25rem 1rem;
  transition: border-color 0.2s;
}

.faq-list details[open] {
  border-color: rgba(124, 58, 237, 0.25);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 0;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--violet);
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0 0 1rem;
  color: var(--slate);
}

.franchise-page-hero {
  padding-top: 2rem;
}

.franchise-page-hero .franchise-hero-banner {
  margin-bottom: 0;
}

.franchise-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section-compact {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.franchise-quote-band {
  padding: 1.75rem 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.06));
  border-block: 1px solid var(--border);
}

.franchise-quote-band-alt {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(124, 58, 237, 0.06));
}

.franchise-quote-band-inner {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 1.25rem;
  align-items: center;
}

.franchise-quote-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.franchise-quote-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.franchise-quote-rotator {
  position: relative;
  min-height: 4.5rem;
}

.franchise-quote {
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.franchise-quote.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.franchise-quote p,
.franchise-quote-static p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink-soft);
}

.franchise-quote-static {
  margin: 0;
  text-align: center;
}

.franchise-how-tiers {
  margin: 1.5rem 0 0;
}

.how-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 1rem 0 1.15rem;
}

.how-tier-card {
  position: relative;
  padding: 1.15rem 1.1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.how-tier-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.how-tier-card:nth-child(1)::before {
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
}

.how-tier-card:nth-child(2)::before {
  background: linear-gradient(90deg, #0891b2, #0284c7);
}

.how-tier-card:nth-child(3)::before {
  background: linear-gradient(90deg, #059669, #0d9488);
}

.how-tier-card:nth-child(4)::before {
  background: linear-gradient(90deg, #d97706, #ca8a04);
}

.how-tier-card h4 {
  margin: 0.5rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
}

.how-tier-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--slate);
}

.how-tier-card p strong {
  color: var(--ink-soft);
}

.franchise-tier-lookup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  margin: 0;
  border-radius: var(--radius);
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.14);
}

.franchise-tier-lookup .franchise-ramp-lead {
  margin: 0;
  flex: 1;
  min-width: 16rem;
}

.calc-panel-head-center {
  justify-content: center;
  text-align: center;
}

.calc-panel-head-center .calc-lead {
  max-width: 40rem;
  margin-inline: auto;
}

.calc-grid-balanced {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 1.25rem;
}

.calc-territory-panel,
.calc-results-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: white;
}

.calc-territory-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  overflow: hidden;
}

.calc-territory-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.calc-territory-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.82));
  color: white;
}

.calc-tier-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  color: white;
}

.calc-tier-badge.tier-a {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
}

.calc-tier-badge.tier-b {
  background: linear-gradient(135deg, #0891b2, #0284c7);
}

.calc-tier-badge.tier-c {
  background: linear-gradient(135deg, #059669, #0d9488);
}

.calc-tier-badge.tier-d {
  background: linear-gradient(135deg, #d97706, #ca8a04);
}

.calc-tier-badge.tier-pop {
  animation: tierPop 0.45s var(--ease);
}

@keyframes tierPop {
  0% {
    transform: scale(0.92);
    opacity: 0.7;
  }
  60% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.calc-tier-label {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.calc-territory-name {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  opacity: 0.9;
}

.calc-inputs-stacked {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  padding: 1.1rem;
  background: var(--mist);
  border: 0;
  border-radius: 0;
  flex: 1;
}

.calc-inputs-stacked .calc-field-hint {
  grid-column: 1 / -1;
}

.calc-results-panel {
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.04), rgba(6, 182, 212, 0.03));
  gap: 0.85rem;
}

.calc-results-panel .calc-result-hero {
  flex-shrink: 0;
}

.calc-results-panel .calc-progress {
  flex: 1;
}

.calc-interview-card {
  margin-top: auto;
  padding: 1.1rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid rgba(124, 58, 237, 0.18);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.calc-interview-lead {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.calc-interview-card .calc-apply-btn {
  width: 100%;
  margin-top: 0;
}

.footer-staff {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem !important;
  opacity: 0.45;
}

.footer-staff:hover {
  opacity: 0.75;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Hero visual badge */
.hero-visual-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(15, 23, 42, 0.72);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

/* Game changer */
.game-changer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.visual-frame {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: var(--shadow);
}

.visual-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-float-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: white;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.game-changer-visual {
  position: relative;
}

.game-changer-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.game-changer-copy > p {
  color: var(--slate);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.manifesto-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.manifesto-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.manifesto-icon {
  color: var(--violet);
  font-size: 0.85rem;
  line-height: 1.6;
  flex-shrink: 0;
}

.manifesto-list strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.manifesto-list span {
  font-size: 0.82rem;
  color: var(--slate);
}

.game-changer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Bharat band */
.bharat-band {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  margin: 0 0 1rem;
}

.bharat-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bharat-band-overlay {
  position: relative;
  z-index: 1;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.94) 0%,
    rgba(15, 23, 42, 0.78) 45%,
    rgba(91, 33, 182, 0.55) 100%
  );
  color: white;
  padding: 3rem 0;
}

.bharat-band-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.65rem;
  max-width: 16ch;
}

.bharat-band-inner > p {
  margin: 0 0 1.5rem;
  max-width: 52ch;
  opacity: 0.92;
  line-height: 1.55;
}

.bharat-band-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.bharat-band-stats div {
  min-width: 100px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.bharat-band-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #c4b5fd;
}

.bharat-band-stats span {
  font-size: 0.72rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Revolution visual in growth */
.revolution-visual {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.revolution-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* Journey invite */
.journey-invite {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.04), transparent);
}

.path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.path-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.path-card-featured {
  border-color: rgba(124, 58, 237, 0.3);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.06), white 45%);
  box-shadow: var(--shadow);
}

.path-card-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 10;
}

.path-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.path-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.45rem;
}

.path-tag-gold {
  color: #b45309;
}

.path-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.path-card p {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.55;
}

.path-card .btn {
  align-self: flex-start;
}

/* Franchise hero banner */
.franchise-hero-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.06));
  border: 1px solid rgba(124, 58, 237, 0.18);
}

.franchise-hero-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.25rem 0 0.75rem;
  line-height: 1.15;
}

.franchise-hero-banner-copy p {
  color: var(--slate);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.franchise-hero-banner-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: var(--shadow-soft);
}

.franchise-hero-banner-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* CTA */
.cta {
  padding-bottom: 5rem;
}

.cta-banner {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 300px;
  box-shadow: 0 28px 60px rgba(91, 33, 182, 0.35);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.5rem);
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(91, 33, 182, 0.92),
    rgba(124, 58, 237, 0.82),
    rgba(6, 182, 212, 0.75)
  );
}

.cta-banner-inner h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  max-width: 580px;
}

.cta-banner-inner p {
  margin: 0;
  opacity: 0.92;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-brand img {
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 0.5rem !important;
}

.footer-address {
  font-size: 0.88rem !important;
  line-height: 1.5;
  opacity: 0.78;
}

.footer-legal {
  font-size: 0.82rem !important;
  opacity: 0.55;
  margin-top: 0.5rem !important;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 0.75rem !important;
}

.site-footer h4 {
  color: white;
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: white;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .spotlight,
  .spotlight-reverse .spotlight-media,
  .spotlight-reverse .spotlight-copy {
    grid-template-columns: 1fr;
  }

  .spotlight-reverse .spotlight-media,
  .spotlight-reverse .spotlight-copy {
    order: unset;
  }

  .growth-card-hero {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .growth-bento,
  .franchise-grid,
  .franchise-split,
  .calc-grid,
  .calc-grid-balanced,
  .projection-grid,
  .how-tiers-grid,
  .game-changer-grid,
  .franchise-hero-banner,
  .path-cards,
  .franchise-quote-band-inner {
    grid-template-columns: 1fr 1fr;
  }

  .path-cards .path-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
    width: 100%;
  }

  .calc-inputs {
    grid-template-columns: 1fr;
  }

  .franchise-card-hero {
    grid-column: span 2;
  }

  .growth-card-hero {
    grid-column: span 2;
  }

  .legacy-compare,
  .journey-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .journey-cta {
    justify-self: start;
  }

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

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

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

  .hero-float-1 {
    left: 2%;
  }

  .hero-float-2 {
    right: 2%;
  }
}

@media (max-width: 720px) {
  .nav-primary a:not(.nav-cta):not(.nav-franchise) {
    display: none;
  }

  .nav-drawer {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: auto;
    bottom: 0;
    width: min(18rem, 88vw);
    max-width: none;
    max-height: none;
    border-radius: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    padding-top: 0.85rem;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.1);
  }

  .growth-bento,
  .franchise-grid,
  .franchise-card-hero,
  .app-grid,
  .app-grid-duo,
  .quote-grid,
  .stats-grid,
  .company-facts {
    grid-template-columns: 1fr;
  }

  .company-facts-wide {
    grid-column: span 1;
  }

  .growth-card-hero,
  .franchise-card-hero {
    grid-column: span 1;
  }

  .franchise-spotlight-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .franchise-spotlight-actions {
    width: 100%;
  }

  .franchise-spotlight-actions .btn {
    flex: 1;
    min-width: 0;
  }

  .calc-result-grid,
  .calc-grid-balanced,
  .projection-grid,
  .how-tiers-grid,
  .game-changer-grid,
  .franchise-hero-banner,
  .path-cards,
  .franchise-quote-band-inner {
    grid-template-columns: 1fr;
  }

  .calc-inputs-stacked {
    grid-template-columns: 1fr;
  }

  .path-cards .path-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .bharat-band-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .calc-panel-head {
    flex-direction: column;
  }

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

  .hero-float {
    display: none;
  }
}

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

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