:root {
  --navy: #0f1c2e;
  --navy-mid: #1e2732;
  --ink: #1d1d1f;
  --ink-soft: #424245;
  --muted: #65748b;
  --white: #ffffff;
  --surface: #f5f8fb;
  --surface-blue: #f9fcff;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(29, 29, 31, 0.14);
  --brand: #0a6fe8;
  --brand-light: #66d8ff;
  --cyan: #66d8ff;
  --teal: #2ec9a7;
  --mint: #86e7c8;
  --gold: #d97706;
  --success: #059669;
  --danger: #dc2626;
  --warning: #b45309;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  --shadow-strong: 0 34px 80px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4,
.display-font {
  font-family: "Sora", "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 5vw, 60px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -0.04em;
}

.brand em {
  color: #62748f;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 28, 46, 0.08);
  box-shadow: 0 12px 30px rgba(15, 28, 46, 0.12);
}

.brand-mark img {
  width: 28px;
  height: 28px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--brand);
}

.nav-strong {
  padding: 10px 22px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(6, 22, 44, 0.16);
}

.nav-strong:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 17px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

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

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0a6fe8, #17bdf4);
  box-shadow: 0 16px 30px rgba(10, 111, 232, 0.22);
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #075ed2, #35c9f7);
  box-shadow: 0 20px 42px rgba(10, 111, 232, 0.3);
}

.btn-cta {
  min-height: 54px;
  padding: 16px 30px;
  box-shadow: 0 20px 44px rgba(26, 86, 219, 0.32), 0 0 0 6px rgba(26, 86, 219, 0.08);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid rgba(29, 29, 31, 0.12);
}

.btn-secondary:hover:not(:disabled) {
  color: var(--brand);
  background: var(--white);
  border-color: rgba(0, 113, 227, 0.24);
}

.btn-small {
  min-height: 34px;
  padding: 8px 13px;
  font-size: 0.84rem;
}

.btn-danger {
  color: var(--white);
  background: var(--danger);
}

.btn-completed,
.btn-completed:disabled {
  color: var(--white);
  background: linear-gradient(135deg, var(--success), var(--mint));
  box-shadow: 0 18px 36px rgba(5, 150, 105, 0.24);
  opacity: 1;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
  padding: 90px clamp(22px, 5vw, 60px) 78px;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

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

.hero-badge,
.tag,
.status-pill,
.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(26, 86, 219, 0.14);
  color: var(--brand);
  background: rgba(26, 86, 219, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-badge {
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

.hero h1 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(3rem, 5.45vw, 5.25rem);
  font-weight: 900;
  line-height: 1;
}

.hero h1 em {
  color: var(--brand);
  font-style: italic;
}

.section-title strong,
.hero-sub strong,
.section-sub strong,
.bento-card p strong,
.step-card p strong,
.sample-panel p strong,
.media-card p strong {
  color: var(--brand);
  font-weight: 900;
}

.hero-sub {
  max-width: 530px;
  margin: 0 0 40px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.75;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-right: -10px;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--brand);
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  font-weight: 800;
  font-size: 0.72rem;
}

.trust-text {
  margin: 0 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-text strong {
  color: var(--ink);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 760px;
}

.hero-img-main {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.hero-card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.float-card-1 {
  left: -28px;
  bottom: -22px;
}

.float-card-2 {
  right: -28px;
  top: -22px;
}

.float-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--brand);
  background: #dbeafe;
  font-weight: 900;
  font-size: 0.86rem;
}

.float-card-2 .float-card-icon {
  color: var(--success);
  background: #d1fae5;
}

.float-card-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.float-card-info strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 34px clamp(22px, 5vw, 60px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.logos-label,
.section-label,
.eyebrow {
  display: inline-block;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.logos-label {
  margin-right: 12px;
  color: var(--muted);
}

.logo-pill {
  color: var(--ink-soft);
  background: var(--white);
  border-color: var(--border);
}

.section {
  padding: 96px clamp(22px, 5vw, 60px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-title,
.section-heading h2,
.pricing-heading h2,
.final-cta h2,
.auth-panel h1,
.checkout-copy h1,
.state-shell h1,
.content-hero h1,
.admin-heading h1 {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.08;
}

.section-title,
.section-heading h2,
.pricing-heading h2,
.final-cta h2 {
  max-width: 860px;
  margin: 12px 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
}

.section-sub {
  max-width: 600px;
  margin: 0 0 56px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, auto);
  gap: 16px;
}

.bento-card,
.feature-card,
.example-card,
.metric-card,
.auth-panel,
.checkout-box,
.content-block,
.table-section,
.state-shell,
.sample-panel,
.media-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: none;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.bento-card.wide {
  grid-column: span 2;
}

.bento-card.dark {
  color: var(--white);
  background: var(--navy);
  border-color: transparent;
}

.bento-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.bento-highlight > div {
  padding: 40px;
}

.bento-highlight img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.bento-warm {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.bento-icon,
.feature-icon,
.step-num {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--brand);
  background: rgba(26, 86, 219, 0.12);
  font-weight: 900;
}

.bento-card.dark .bento-icon {
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.16);
}

.bento-warm .bento-icon {
  color: var(--gold);
  background: rgba(217, 119, 6, 0.14);
}

.bento-card h3,
.feature-card h3,
.example-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.2;
}

.bento-card.dark h3 {
  color: var(--white);
}

.bento-card p,
.feature-card p,
.example-card p,
.muted {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.bento-card.dark p {
  color: rgba(255, 255, 255, 0.68);
}

.bento-bg-img {
  position: absolute;
  right: -18%;
  bottom: -28%;
  width: 105%;
  max-width: none;
  opacity: 0.24;
  pointer-events: none;
}

.heart-card {
  min-height: 248px;
}

.heart-card h3,
.heart-card p,
.heart-card .bento-icon {
  position: relative;
  z-index: 1;
}

.feature-grid,
.examples-grid,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.example-card,
.metric-card {
  padding: 26px;
}

.steps-section {
  padding: 96px clamp(22px, 5vw, 60px);
  color: var(--white);
  background: var(--navy);
}

.steps-section .section-label {
  color: var(--cyan);
}

.steps-section .section-title {
  color: var(--white);
}

.steps-section .section-sub {
  color: rgba(255, 255, 255, 0.66);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.step-card {
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.22s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.step-num {
  color: var(--white);
  background: var(--brand);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: 1.2rem;
}

.step-card h4 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.17rem;
  font-weight: 700;
  line-height: 1.25;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.testimonial-section,
.media-section {
  padding: 96px clamp(22px, 5vw, 60px);
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 44px;
  align-items: center;
}

.visual-stack {
  display: grid;
  gap: 18px;
}

.testimonial-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.14);
}

.sample-panel {
  padding: 28px;
  background: var(--surface);
}

.sample-panel h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.sample-panel p {
  margin: 0;
  color: var(--muted);
}

.sample-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.sample-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(26, 86, 219, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.testimonial-content {
  padding: 18px;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 24px;
}

.star {
  width: 20px;
  height: 20px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-quote {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid var(--border);
  border-radius: 50%;
  color: var(--brand);
  background: #dbeafe;
  font-weight: 900;
}

.author-name {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.author-title {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.metrics-row.compact {
  margin-top: 24px;
}

.metric-item {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}

.metric-num {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.specialist-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: 96px clamp(22px, 5vw, 60px);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.showcase-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-blue);
  box-shadow: var(--shadow);
}

.showcase-image img {
  display: block;
  width: 100%;
  max-height: 620px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.showcase-copy .section-sub {
  margin-bottom: 26px;
}

.showcase-copy .sample-panel {
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 22, 44, 0.08);
}

.sample-panel h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.18;
}

.media-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 0;
}

.mvp-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: 96px clamp(22px, 5vw, 60px);
  background: var(--white);
}

.mvp-points {
  display: grid;
  gap: 14px;
}

.mvp-points article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(245, 245, 247, 0.72);
}

.mvp-points strong {
  display: block;
  color: var(--ink);
  font-size: 1.04rem;
  margin-bottom: 6px;
}

.mvp-points p {
  margin: 0;
  color: var(--muted);
}

.media-card {
  overflow: hidden;
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-card > div {
  padding: 30px;
}

.media-card h2 {
  margin: 10px 0;
  color: var(--navy);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.media-card p {
  margin: 0;
  color: var(--muted);
}

.media-card.dark {
  color: var(--white);
  background: var(--navy);
  border-color: transparent;
}

.media-card.dark h2 {
  color: var(--white);
}

.media-card.dark p {
  color: rgba(255, 255, 255, 0.66);
}

.pricing-section {
  padding: 96px clamp(22px, 5vw, 60px);
  background: var(--surface);
}

.pricing-heading {
  text-align: center;
  margin-bottom: 52px;
}

.pricing-heading .section-title {
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow-strong);
}

.pricing-left,
.pricing-right {
  padding: 52px;
}

.pricing-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.pricing-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pricing-left h2 {
  margin: 0;
  color: var(--white);
  font-size: 2.25rem;
  line-height: 1.15;
}

.pricing-left p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-currency {
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 700;
}

.price-value {
  color: var(--white);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
}

.price-period {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.pricing-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.check-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.pricing-btn:hover {
  color: var(--white);
  background: var(--cyan);
  transform: translateY(-2px);
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 96px clamp(22px, 5vw, 60px);
  text-align: center;
  background: var(--white);
}

.final-cta .section-title,
.final-cta .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .section-sub {
  margin-bottom: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 40px clamp(22px, 5vw, 60px);
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-brand-block {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.footer-brand-block strong {
  display: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--brand);
}

.auth-shell,
.checkout-shell,
.state-page {
  min-height: calc(100vh - 74px);
}

.auth-shell,
.state-shell {
  display: grid;
  place-items: center;
  padding: 70px 22px;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

.auth-panel {
  width: min(100%, 500px);
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.auth-panel-wide {
  width: min(100%, 760px);
}

.auth-panel h1,
.checkout-copy h1,
.state-shell h1 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.form-stack,
.content-form {
  display: grid;
  gap: 16px;
}

.form-row.compact {
  gap: 12px;
}

.form-divider {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(10, 111, 232, 0.14);
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbff, #ffffff);
}

.form-divider strong {
  color: var(--navy);
}

.form-divider span {
  color: var(--muted);
  font-size: 0.88rem;
}

.auth-checkbox {
  display: grid;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-stack label,
.content-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.12);
}

.alert {
  margin: 16px 0;
  padding: 13px 15px;
  border-radius: 14px;
  font-weight: 700;
}

.alert p {
  margin: 0;
}

.alert-error {
  color: #8a1f1f;
  background: #fff1f1;
  border: 1px solid #ffcfcf;
}

.alert-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.alert-info {
  color: #0f4f85;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.auth-alt,
.tiny {
  color: var(--muted);
  font-size: 0.94rem;
}

.auth-alt a {
  color: var(--brand);
  font-weight: 800;
}

.form-help-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -6px;
}

.form-help-row a {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
}

.password-strength {
  display: grid;
  gap: 7px;
  margin-top: -8px;
}

.password-strength::before {
  content: "";
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
}

.password-strength span {
  display: block;
  width: 12%;
  height: 8px;
  margin-top: -15px;
  border-radius: 999px;
  background: var(--danger);
  transition: width 0.2s ease, background 0.2s ease;
}

.password-strength[data-score="4"] span,
.password-strength[data-score="5"] span {
  background: var(--warning);
}

.password-strength[data-score="6"] span {
  background: var(--success);
}

.password-strength small {
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-shell {
  display: grid;
  place-items: center;
  padding: clamp(46px, 7vh, 78px) clamp(22px, 5vw, 60px);
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  width: min(100%, 1120px);
}

.checkout-copy {
  display: grid;
  gap: 18px;
}

.checkout-copy p {
  max-width: 620px;
  color: var(--muted);
}

.checkout-copy h1 {
  max-width: 680px;
}

.checkout-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(26, 86, 219, 0.16);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(26, 86, 219, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.checkout-benefits article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(6, 22, 44, 0.05);
}

.checkout-benefits span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 10px;
  color: var(--brand);
  background: #dbeafe;
  font-size: 0.78rem;
  font-weight: 900;
}

.checkout-benefits strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-weight: 900;
}

.checkout-benefits p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.checkout-note {
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.checkout-box {
  padding: 28px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(6, 22, 44, 0.13);
}

.checkout-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--brand));
}

.checkout-box-head span {
  font-size: 0.86rem;
  font-weight: 800;
}

.checkout-box-head strong {
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: 1.35rem;
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.price-line strong {
  color: var(--brand);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: 2.15rem;
  line-height: 1;
}

.price-line small {
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.14);
  font-size: 0.72rem;
  font-weight: 900;
}

.checkout-box .btn {
  width: 100%;
}

.checkout-box .tiny {
  margin-bottom: 0;
  text-align: center;
}

.activation-card {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 18px;
  background: var(--surface-blue);
}

.activation-card strong {
  color: var(--navy);
}

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

.member-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  min-height: 100vh;
  background: var(--surface);
}

.member-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  padding: 24px;
  color: var(--white);
  background: var(--navy);
}

.member-brand {
  color: var(--white);
}

.member-sidebar-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.2s ease, transform 0.2s ease;
}

.member-sidebar-profile:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.member-sidebar-profile small,
.member-sidebar-profile em {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.member-sidebar-profile strong {
  display: block;
  max-width: 164px;
  overflow: hidden;
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-progress {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.member-progress span {
  color: rgba(255, 255, 255, 0.62);
}

.member-progress strong {
  color: var(--white);
  font-size: 1.6rem;
}

.member-progress .specialty-label {
  font-size: 1.08rem;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.progress-track span {
  display: block;
  height: 100%;
  background: var(--cyan);
}

.day-nav {
  display: grid;
  gap: 8px;
}

.day-nav a {
  display: grid;
  gap: 2px;
  min-height: 58px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.day-nav a span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.day-nav a.active {
  border-color: var(--cyan);
  background: rgba(6, 182, 212, 0.18);
}

.day-nav a.done {
  border-color: rgba(16, 185, 129, 0.9);
  background: rgba(5, 150, 105, 0.2);
}

.day-nav a.done span::after {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--navy);
  background: #a7f3d0;
  font-size: 0.72rem;
  font-weight: 900;
}

.day-nav a.locked {
  opacity: 0.62;
  background: rgba(255, 255, 255, 0.035);
}

.day-nav small {
  color: rgba(255, 255, 255, 0.62);
}

.sidebar-link {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.member-content {
  position: relative;
  padding: 34px clamp(22px, 4vw, 56px) 96px;
}

.member-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.member-topbar h1 {
  margin: 6px 0 6px;
  color: var(--navy);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.08;
}

.member-topbar p {
  margin: 0;
  color: var(--muted);
}

.member-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.member-profile-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 6px 14px 6px 7px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.member-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(180deg, var(--brand-light), var(--brand));
  font-size: 0.82rem;
  font-weight: 900;
}

.member-avatar-large {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-profile-button small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
}

.member-profile-button strong {
  display: block;
  max-width: 140px;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-nudge,
.completion-celebration {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(0, 113, 227, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(18px);
}

.profile-entry-choice {
  border-color: rgba(0, 102, 204, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
  box-shadow: 0 22px 50px rgba(0, 102, 204, 0.1);
}

.profile-nudge-kicker,
.completion-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand);
  background: var(--surface-blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-nudge h2,
.completion-celebration h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.profile-nudge p,
.completion-celebration p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.profile-nudge-actions {
  display: grid;
  gap: 10px;
  min-width: min(100%, 220px);
}

.profile-nudge-actions span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.completion-celebration {
  position: relative;
  overflow: hidden;
  border-color: rgba(5, 150, 105, 0.2);
  background: linear-gradient(135deg, #ffffff, #f6fffb);
}

.completion-badge {
  color: #047857;
  background: #d1fae5;
}

.month-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.month-tab {
  display: grid;
  gap: 3px;
  min-height: 84px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 22, 44, 0.05);
}

.month-tab span {
  color: var(--navy);
  font-weight: 900;
}

.month-tab small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.month-tab.active {
  border-color: rgba(26, 86, 219, 0.32);
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  box-shadow: 0 14px 36px rgba(26, 86, 219, 0.12);
}

.month-tab.locked {
  color: var(--muted);
  background: #f3f4f6;
  box-shadow: none;
}

.mobile-day-nav {
  display: none;
}

.content-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 22, 44, 0.06);
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.content-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.content-hero p {
  margin: 6px 0 0;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.quick-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.quick-brief article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 22, 44, 0.05);
}

.quick-brief span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-brief strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.guide-word-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(10, 111, 232, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
  box-shadow: 0 12px 32px rgba(6, 22, 44, 0.06);
}

.guide-word-card > div:first-child > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-word-card h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.3;
}

.guide-word-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-word-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.guide-word-list span {
  display: inline-flex;
  margin: 0;
  padding: 9px 13px;
  border: 1px solid rgba(10, 111, 232, 0.13);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(6, 22, 44, 0.05);
  text-transform: none;
}

.member-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
  align-items: stretch;
  margin: 32px 0;
}

.widget-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.055);
}

.widget-card h3 {
  margin: 4px 0 8px;
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.widget-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.widget-kicker {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reward-card {
  background: linear-gradient(135deg, #fff9f0, #ffffff);
}

.reward-card.unlocked {
  border-color: rgba(5, 150, 105, 0.28);
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
}

.reward-feature {
  grid-column: span 2;
}

.cfm-card {
  grid-row: span 2;
}

.campaign-card {
  grid-column: span 2;
}

.week-plan,
.campaign-list {
  display: grid;
  gap: 8px;
}

.campaign-list {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.week-plan a,
.campaign-list div {
  display: grid;
  gap: 2px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(245, 245, 247, 0.92);
}

.week-plan a.active {
  border-color: rgba(26, 86, 219, 0.35);
  background: var(--surface-blue);
}

.week-plan a.done {
  border-color: rgba(5, 150, 105, 0.35);
  background: #ecfdf5;
}

.week-plan span,
.campaign-list strong {
  color: var(--navy);
  font-weight: 900;
  font-size: 0.84rem;
}

.week-plan small,
.campaign-list small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

.prompt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.prompt-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--brand);
  background: var(--surface-blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.profile-ok-note {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #047857;
  background: #d1fae5;
  font-size: 0.76rem;
  font-weight: 900;
}

.public-link-inline {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid rgba(26, 86, 219, 0.2);
  border-radius: 12px;
  color: var(--brand);
  background: var(--surface-blue);
}

.public-link-inline span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.public-link-inline strong {
  color: var(--navy);
  font-size: 0.82rem;
  word-break: break-word;
}

.cfm-list {
  display: grid;
  gap: 8px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.cfm-list li {
  display: grid;
  gap: 2px;
  padding-left: 22px;
  position: relative;
}

.cfm-list li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: var(--warning);
  background: #fff7ed;
  font-size: 0.66rem;
  font-weight: 900;
}

.cfm-list li.done::before {
  content: "✓";
  color: var(--success);
  background: #d1fae5;
}

.cfm-list strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.cfm-list small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.execution-grid {
  align-items: start;
}

.content-block {
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 22, 44, 0.06);
}

.content-block.wide {
  grid-column: 1 / -1;
}

.content-grid > .wide {
  grid-column: 1 / -1;
}

.objective-card {
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.action-block {
  min-height: 260px;
}

.primary-action {
  border-color: rgba(6, 182, 212, 0.22);
  background: linear-gradient(135deg, #ecfeff, #ffffff);
}

.optional-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 2px 2px;
}

.optional-section-heading span {
  color: var(--navy);
  font-weight: 900;
  font-size: 1.02rem;
}

.optional-section-heading p,
.helper-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ai-block {
  border-color: rgba(26, 86, 219, 0.18);
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.block-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.step-chip {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  font-weight: 900;
}

.task-chip {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.task-chip.required {
  color: #065f46;
  background: #d1fae5;
}

.task-chip.optional {
  color: var(--brand);
  background: var(--surface-blue);
}

.block-heading h2 {
  flex: 1;
  margin: 0;
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.05rem;
}

.copy-text {
  margin: 0;
  color: var(--ink-soft);
  white-space: pre-line;
}

.script-outline {
  display: grid;
  gap: 12px;
  white-space: normal;
}

.script-line {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(0, 102, 204, 0.12);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.035);
}

.script-line span {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--brand);
  background: var(--surface-blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.script-line strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.5;
}

.slide-prompt-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.slide-prompt-row {
  padding: 14px;
  border: 1px solid rgba(0, 102, 204, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.slide-prompt-row summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

.slide-prompt-row summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--brand);
  background: var(--surface-blue);
  font-weight: 900;
}

.slide-prompt-row[open] summary::after {
  content: "-";
}

.slide-prompt-row summary::-webkit-details-marker {
  display: none;
}

.slide-prompt-row summary small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.slide-prompt-row .copy-text {
  margin: 12px 0;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.icon-button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--brand);
  background: var(--surface-blue);
  cursor: pointer;
  font-weight: 800;
  font-size: 0.82rem;
}

.floating-copy,
.floating-complete {
  position: fixed;
  right: 24px;
  bottom: 24px;
}

.teleprompter-modal[hidden] {
  display: none;
}

.teleprompter-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 22, 44, 0.78);
}

.teleprompter-panel {
  width: min(100%, 900px);
  max-height: min(92vh, 720px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #020617;
  box-shadow: var(--shadow-strong);
}

.teleprompter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  padding: 14px;
  background: #0f172a;
}

.teleprompter-toolbar-title {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.teleprompter-toolbar .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.teleprompter-toolbar .btn-secondary:hover,
.teleprompter-toolbar .btn-secondary.active {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.teleprompter-close {
  color: var(--white);
  background: var(--danger);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.22);
}

.teleprompter-screen {
  height: min(70vh, 620px);
  overflow-y: auto;
  padding: clamp(34px, 7vw, 76px);
  color: var(--white);
  font-size: calc(clamp(2rem, 5vw, 4.4rem) * var(--teleprompter-scale, 1));
  line-height: 1.35;
  white-space: pre-line;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 86px;
  z-index: 30;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: 14px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.completion-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(245, 245, 247, 0.76);
  backdrop-filter: blur(18px);
}

.completion-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(0, 102, 204, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.completion-modal-badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #065f46;
  background: #d1fae5;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.completion-modal-card h2 {
  max-width: 520px;
  margin: 0 auto 12px;
  color: var(--navy);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
}

.completion-modal-card p {
  max-width: 500px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.completion-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.empty-state {
  max-width: 650px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.locked-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(26, 86, 219, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 70%, #ecfeff 100%);
  box-shadow: var(--shadow);
}

.locked-panel h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.locked-panel p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.locked-actions {
  display: grid;
  gap: 12px;
  min-width: min(100%, 260px);
}

.profile-shell,
.bio-shell,
.certificate-shell {
  min-height: calc(100vh - 74px);
  padding: clamp(34px, 6vw, 70px) clamp(22px, 5vw, 60px);
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

.profile-shell {
  display: grid;
  place-items: start center;
}

.profile-panel {
  width: min(100%, 980px);
}

.profile-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.profile-heading h1 {
  margin: 8px 0 8px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.profile-heading p {
  margin: 0;
  color: var(--muted);
}

.profile-why-card,
.profile-photo-panel,
.public-link-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 22, 44, 0.05);
}

.profile-why-card {
  margin-bottom: 18px;
  padding: 18px 20px;
  border-color: rgba(26, 86, 219, 0.18);
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.profile-why-card strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.profile-why-card p {
  max-width: 820px;
  margin: 6px 0 0;
  color: var(--muted);
}

.profile-photo-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 20px;
}

.profile-photo-preview {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--brand);
  background: linear-gradient(135deg, #dbeafe, #cffafe);
  font-size: 1.7rem;
  font-weight: 900;
}

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

.profile-photo-copy h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.15rem;
}

.profile-photo-copy p {
  margin: 0 0 12px;
  color: var(--muted);
}

.profile-photo-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.file-upload-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px dashed rgba(26, 86, 219, 0.34);
  border-radius: 999px;
  color: var(--brand);
  background: var(--surface-blue);
  cursor: pointer;
  font-weight: 900;
}

.file-upload-label input {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.inline-form {
  margin-top: 8px;
}

.photo-upload-status {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.tiny-button {
  border: 0;
  padding: 0;
  color: var(--danger);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.profile-form {
  max-width: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.checkbox-label {
  align-content: center;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-blue);
}

.checkbox-label input {
  width: auto;
}

.public-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 2px 0 18px;
  padding: 16px;
  border-color: rgba(26, 86, 219, 0.18);
  background: var(--surface-blue);
}

.public-link-card.muted {
  background: var(--surface);
}

.public-link-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.public-link-card strong {
  display: block;
  color: var(--navy);
  word-break: break-word;
}

.bio-shell {
  display: grid;
  place-items: center;
}

.bio-card {
  width: min(100%, 640px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.bio-avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 22px;
  color: var(--brand);
  background: linear-gradient(135deg, #dbeafe, #cffafe);
  font-size: 1.4rem;
  font-weight: 900;
}

.bio-avatar-img {
  display: block;
  object-fit: cover;
  color: transparent;
}

.bio-card h1 {
  margin: 6px 0 8px;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.bio-meta,
.bio-text,
.bio-footnote,
.bio-services p {
  color: var(--muted);
}

.bio-text {
  margin: 18px auto;
  max-width: 520px;
}

.bio-services {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-blue);
  text-align: left;
}

.bio-services strong {
  color: var(--navy);
}

.bio-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.bio-footnote {
  margin: 22px 0 0;
  font-size: 0.86rem;
}

.certificate-shell {
  display: grid;
  place-items: center;
}

.certificate-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 960px);
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff, #fbfdff);
  box-shadow: var(--shadow-strong);
}

.certificate-ribbon {
  position: absolute;
  top: 26px;
  left: -48px;
  width: 230px;
  padding: 9px 0;
  color: var(--white);
  background: linear-gradient(180deg, var(--brand-light), var(--brand));
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-38deg);
  box-shadow: 0 14px 28px rgba(0, 113, 227, 0.18);
}

.certificate-top,
.certificate-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.certificate-badge {
  padding: 9px 13px;
  border-radius: 999px;
  color: #065f46;
  background: #ecfdf5;
  font-weight: 900;
}

.certificate-body {
  padding: clamp(42px, 7vw, 82px) 0 42px;
  text-align: center;
}

.certificate-seal {
  display: inline-grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: 50%;
  color: var(--brand);
  background: #f5f9ff;
  box-shadow: 0 16px 34px rgba(0, 102, 204, 0.12);
}

.certificate-seal span {
  display: block;
  color: var(--brand);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: 3.15rem;
  font-weight: 900;
  line-height: 0.9;
}

.certificate-seal small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-body h1 {
  margin: 8px 0 14px;
  font-size: clamp(2.6rem, 8vw, 5.6rem);
}

.certificate-body p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.certificate-body > small {
  display: block;
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.certificate-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.certificate-meta div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.certificate-meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-meta strong {
  color: var(--navy);
}

.certificate-actions-prominent {
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(0, 102, 204, 0.1);
  border-radius: 22px;
  background: rgba(245, 249, 255, 0.9);
}

.certificate-signature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 12px 0 30px;
}

.certificate-signature div {
  display: grid;
  gap: 6px;
}

.certificate-signature span {
  display: block;
  height: 1px;
  background: rgba(29, 29, 31, 0.26);
}

.certificate-signature strong {
  color: var(--ink);
}

.certificate-signature small {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 26px;
  padding: 34px clamp(22px, 4vw, 56px);
  background: var(--surface);
  min-height: calc(100vh - 74px);
}

.admin-nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-nav a {
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--muted);
  background: var(--white);
  font-weight: 800;
}

.admin-nav a.active,
.admin-nav a:hover {
  color: var(--brand);
  border-color: rgba(26, 86, 219, 0.22);
  background: var(--surface-blue);
}

.admin-main {
  min-width: 0;
}

.admin-heading,
.table-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-heading h1 {
  margin: 8px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.metric-card {
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 22, 44, 0.06);
}

.metric-card span {
  color: var(--muted);
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.table-section {
  padding: 20px;
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 22, 44, 0.06);
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

tr:last-child td {
  border-bottom: 0;
}

.status-pill.active {
  color: var(--success);
  background: rgba(5, 150, 105, 0.12);
}

.status-pill.pending {
  color: var(--warning);
  background: #fff7ed;
  border-color: rgba(180, 83, 9, 0.16);
}

.status-pill.inactive {
  color: var(--danger);
  background: #fff1f1;
  border-color: rgba(220, 38, 38, 0.16);
}

.inline-form,
.action-cell,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-bar {
  margin-bottom: 18px;
}

.filter-bar label {
  display: grid;
  gap: 6px;
  min-width: min(100%, 280px);
  color: var(--muted);
  font-weight: 800;
}

.inline-form select {
  min-width: 130px;
  padding: 8px 10px;
}

.content-form {
  max-width: 980px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 22, 44, 0.06);
}

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

.state-shell {
  width: min(100%, 640px);
  padding: 34px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.brand-root-hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: 96px clamp(22px, 6vw, 76px);
  background:
    radial-gradient(circle at 84% 22%, rgba(102, 216, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.brand-root-copy {
  max-width: 820px;
}

.brand-root-copy h1 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 900;
  line-height: 0.98;
}

.brand-root-copy p {
  max-width: 650px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.brand-root-panel {
  display: grid;
  gap: 14px;
  padding: 34px;
  border: 1px solid rgba(15, 28, 46, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-strong);
}

.brand-root-panel img {
  width: 92px;
  height: 92px;
}

.brand-root-panel span,
.brand-vertical-card span {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #047857;
  background: rgba(134, 231, 200, 0.24);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-root-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
}

.brand-root-panel p {
  margin: 0 0 8px;
  color: var(--muted);
}

.brand-verticals,
.brand-method {
  padding: 96px clamp(22px, 5vw, 60px);
}

.brand-vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.brand-vertical-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(6, 22, 44, 0.055);
}

.brand-vertical-card.active {
  border-color: rgba(10, 111, 232, 0.22);
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
}

.brand-vertical-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 2.2rem;
}

.brand-vertical-card p {
  margin: 0;
  color: var(--muted);
}

.brand-vertical-card a {
  align-self: end;
  margin-top: 14px;
  color: var(--brand);
  font-weight: 900;
}

.brand-method {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  background: var(--surface);
}

@media (max-width: 1100px) {
  .hero,
  .member-shell,
  .admin-shell,
  .testimonial-grid,
  .specialist-showcase,
  .mvp-section,
  .media-section,
  .brand-root-hero,
  .brand-method {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .features-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .brand-vertical-grid {
    grid-template-columns: 1fr;
  }

  .pricing-right {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .member-sidebar {
    position: static;
    height: auto;
  }

  .day-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .month-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .quick-brief {
    grid-template-columns: 1fr;
  }

  .guide-word-card {
    grid-template-columns: 1fr;
  }

  .member-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reward-feature,
  .campaign-card {
    grid-column: auto;
  }

  .content-block.wide {
    grid-column: auto;
  }

  .locked-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .section,
  .steps-section,
  .testimonial-section,
  .pricing-section,
  .final-cta,
  .mvp-section,
  .media-section,
  .brand-root-hero,
  .brand-verticals,
  .brand-method,
  .checkout-shell,
  .admin-shell,
  .member-content,
  .profile-shell,
  .bio-shell,
  .certificate-shell {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }

  .hero-card-float {
    position: static;
    margin-top: 12px;
  }

  .features-bento,
  .feature-grid,
  .examples-grid,
  .steps-grid,
  .metrics-row,
  .month-tabs,
  .day-nav,
  .member-widgets,
  .certificate-meta,
  .certificate-signature,
  .form-row,
  .admin-nav {
    grid-template-columns: 1fr;
  }

  .member-shell {
    display: flex;
    flex-direction: column;
  }

  .member-content {
    order: 1;
    padding-top: 22px;
    padding-bottom: 96px;
  }

  .member-sidebar {
    order: 2;
    padding: 20px 22px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .member-sidebar .day-nav {
    display: none;
  }

  .member-progress {
    grid-template-columns: 1fr 1fr;
  }

  .member-progress .progress-track,
  .member-progress .specialty-label {
    grid-column: 1 / -1;
  }

  .mobile-day-nav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(118px, 40%);
    gap: 8px;
    overflow-x: auto;
    margin: -6px 0 18px;
    padding: 4px 2px 10px;
    scrollbar-width: thin;
  }

  .mobile-day-nav a {
    display: grid;
    gap: 2px;
    min-height: 62px;
    padding: 11px 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--navy);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(6, 22, 44, 0.05);
  }

  .mobile-day-nav a.active {
    border-color: rgba(6, 182, 212, 0.55);
    background: #ecfeff;
  }

  .mobile-day-nav a.done {
    border-color: rgba(5, 150, 105, 0.45);
    background: #ecfdf5;
  }

  .mobile-day-nav a span {
    font-weight: 900;
  }

  .mobile-day-nav small {
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .member-topbar h1 {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }

  .content-hero {
    padding: 20px;
  }

  .content-actions,
  .member-account-actions,
  .content-actions .btn,
  .certificate-actions,
  .certificate-actions .btn {
    width: 100%;
  }

  .content-actions,
  .member-account-actions {
    justify-content: stretch;
  }

  .content-actions .btn,
  .member-account-actions .btn,
  .certificate-actions .btn {
    justify-content: center;
  }

  .bento-card.wide {
    grid-column: span 1;
  }

  .bento-highlight {
    grid-template-columns: 1fr;
  }

  .pricing-left,
  .pricing-right {
    padding: 34px 28px;
  }

  .content-hero,
  .admin-heading,
  .table-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-copy,
  .floating-complete {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
  }

  .teleprompter-modal {
    padding: 12px;
  }

  .teleprompter-toolbar {
    justify-content: stretch;
  }

  .teleprompter-toolbar-title {
    flex: 1 1 100%;
  }

  .teleprompter-toolbar .btn {
    flex: 1 1 42%;
  }

  .teleprompter-screen {
    font-size: clamp(1.7rem, 9vw, 3rem);
  }

  .profile-heading,
  .certificate-top {
    flex-direction: column;
  }

  .profile-photo-panel,
  .public-link-card,
  .optional-section-heading,
  .profile-nudge,
  .completion-celebration {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .profile-photo-panel {
    justify-items: start;
  }

  .campaign-list {
    grid-template-columns: 1fr;
  }

  .profile-photo-form,
  .profile-photo-form .btn,
  .file-upload-label,
  .public-link-card .btn,
  .profile-nudge-actions,
  .profile-nudge-actions .btn,
  .completion-celebration .btn,
  .completion-modal-actions .btn {
    width: 100%;
  }

  .bio-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .toast {
    left: 20px;
    right: 20px;
    bottom: 90px;
    max-width: none;
  }
}

@media print {
  .certificate-page {
    background: #ffffff;
  }

  .certificate-shell {
    min-height: auto;
    padding: 0;
    background: #ffffff;
  }

  .certificate-card {
    box-shadow: none;
    border-color: #d1d5db;
  }

  .certificate-actions {
    display: none;
  }
}
