:root {
  --ink: #13201f;
  --muted-ink: #53605e;
  --paper: #fffdf8;
  --soft: #f3efe6;
  --mist: #e6f4f1;
  --line: #ded8cd;
  --teal: #0b7d77;
  --teal-dark: #075f5a;
  --coral: #f27052;
  --sun: #f4b51d;
  --leaf: #49775f;
  --black: #0a1110;
  --white: #ffffff;
  --shadow: 0 20px 70px rgba(19, 32, 31, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted-ink);
  font-size: 1rem;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.95rem, 5.15vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
}

h3 {
  font-size: 1.18rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(222, 216, 205, 0.7);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 780;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 850;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.72rem 0.86rem;
  border-radius: 8px;
  color: #263331;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--soft);
}

.nav-links .nav-cta,
.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 9px 22px rgba(11, 125, 119, 0.2);
}

.nav-links .nav-cta:hover,
.button.primary:hover {
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.band {
  scroll-margin-top: 92px;
  padding: 96px max(20px, calc((100vw - var(--max)) / 2));
}

.band.compact {
  padding-top: 42px;
  padding-bottom: 42px;
}

.hero {
  min-height: calc(100vh - 154px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 4vw;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(242, 112, 82, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f7f2e8 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 620px;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  color: #40504d;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
}

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

.button.secondary:hover {
  background: var(--soft);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.1rem;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(11, 125, 119, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #263331;
  font-size: 0.88rem;
}

.hero-visual {
  width: min(860px, 60vw);
  margin-right: min(-80px, -4vw);
}

.hero-visual img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.desktop-note {
  background: var(--ink);
  color: var(--white);
}

.desktop-note p,
.desktop-note .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.desktop-note h2 {
  margin-bottom: 0;
}

.section-grid.two {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 2.4rem;
}

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

.step-card,
.price-card,
.workflow-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(19, 32, 31, 0.07);
}

.step-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 1.35rem 1.35rem 1.45rem;
}

.step-number {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--coral);
  font-weight: 850;
  font-size: 0.86rem;
}

.step-card .step-number {
  position: relative;
  z-index: 1;
  margin-bottom: 1.35rem;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

.step-card h3 {
  margin-bottom: 1rem;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 4rem;
  align-items: center;
}

.feature-copy {
  max-width: 640px;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 820;
  border-bottom: 2px solid rgba(11, 125, 119, 0.28);
}

.daily-feature {
  background: linear-gradient(180deg, var(--paper) 0%, #f8f3e9 100%);
}

.daily-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(19, 32, 31, 0.09);
  overflow: hidden;
}

.daily-stat {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 1rem;
  align-items: end;
  padding: 1.35rem;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.daily-stat strong {
  color: var(--sun);
  font-size: clamp(4.1rem, 8vw, 6.4rem);
  line-height: 0.8;
  letter-spacing: 0;
}

.daily-stat span {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  font-weight: 760;
  line-height: 1.2;
}

.daily-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.daily-list span {
  min-height: 88px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: #fbf8f1;
  color: var(--ink);
  font-weight: 800;
}

.daily-list span:nth-child(2) {
  background: #edf7f4;
}

.daily-list span:nth-child(3) {
  background: #fff3d2;
}

.daily-list span:nth-child(4) {
  background: #fbe8df;
}

.example-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1rem 1.35rem 1.35rem;
  background: var(--white);
}

.example-chips span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0.36rem 0.58rem;
  border: 1px solid rgba(11, 125, 119, 0.24);
  border-radius: 999px;
  color: var(--muted-ink);
  font-size: 0.86rem;
  font-weight: 740;
}

.muted {
  background: var(--soft);
}

.limits-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.limits-row div {
  min-height: 150px;
  padding: 1.25rem;
  background: var(--white);
}

.limits-row strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.limits-row span {
  color: var(--muted-ink);
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #faf6ef;
}

.footer-grid {
  width: min(var(--max), calc(100% - 40px));
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1rem;
  color: var(--muted-ink);
  font-size: 0.94rem;
}

.page-hero {
  padding-top: 118px;
  padding-bottom: 76px;
  background: linear-gradient(180deg, #fffdf8 0%, #f4efe6 100%);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.18rem;
}

.workflow-list {
  display: grid;
  gap: 1rem;
}

.workflow-list article {
  display: grid;
  grid-template-columns: 90px 0.8fr 1.1fr;
  gap: 1.6rem;
  align-items: start;
  padding: 1.35rem;
}

.workflow-list .step-number {
  margin-bottom: 0;
}

.workflow-list h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(240px, 0.72fr) minmax(0, 1.16fr);
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  padding: 1.5rem;
}

.price-card.featured {
  border-color: rgba(11, 125, 119, 0.38);
  background: linear-gradient(180deg, #ffffff 0%, #eef8f6 100%);
}

.price-card h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
}

.price-card h2 span {
  color: var(--muted-ink);
  font-size: 1rem;
}

.pricing-details {
  padding: 2rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.pricing-details h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li {
  position: relative;
  padding: 0.86rem 0 0.86rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--sun);
}

.faq-wrap {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 1.2rem 1.35rem;
  font-weight: 820;
}

details p {
  max-width: 860px;
  padding: 0 1.35rem 1.2rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: clamp(2.55rem, 9vw, 4.2rem);
  }

  .hero,
  .split-feature,
  .section-grid.two,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .hero-visual {
    width: 100%;
    margin: 0;
  }

  .hero-visual img {
    max-height: 260px;
    object-fit: cover;
    object-position: 50% 20%;
  }

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

  .workflow-list article {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero {
    padding-top: 44px;
  }

  .steps-grid,
  .limits-row {
    grid-template-columns: 1fr;
  }

  .daily-stat,
  .daily-list {
    grid-template-columns: 1fr;
  }

  .daily-list span {
    min-height: 72px;
  }

  .footer-grid {
    padding: 1.7rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .nav-wrap,
  .footer-grid {
    width: min(100% - 28px, var(--max));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .proof-row {
    display: none;
  }

  .hero-visual img {
    max-height: 150px;
  }
}

/* Modern homepage system */
.modern-hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(440px, 0.86fr) minmax(0, 1.14fr);
  overflow: hidden;
  background: var(--ink);
}

.hero-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
  padding: 4.4vw 3.2vw 4.4vw max(32px, calc((100vw - var(--max)) / 2));
}

.hero-panel h1 {
  max-width: 650px;
  font-size: clamp(3.15rem, 4.35vw, 5rem);
  line-height: 1;
}

.hero-panel .hero-lede {
  max-width: 560px;
}

.product-stage {
  min-height: 100%;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 4.5vw max(32px, calc((100vw - var(--max)) / 2)) 4.5vw 4vw;
  background: var(--ink);
}

.product-stage img {
  width: min(820px, 55vw);
  max-width: none;
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.workflow-band {
  padding: 118px max(20px, calc((100vw - var(--max)) / 2));
  background: #fffdf8;
}

.workflow-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.workflow-intro .eyebrow {
  margin-bottom: 0;
}

.workflow-intro h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
}

.workflow-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-rail article {
  min-height: 360px;
  padding: 1.4rem 1.3rem 1.6rem;
  border-right: 1px solid var(--line);
}

.workflow-rail article:last-child {
  border-right: 0;
}

.workflow-rail span {
  display: block;
  margin-bottom: 3.4rem;
  color: var(--coral);
  font-size: clamp(3.2rem, 5.4vw, 5.7rem);
  font-weight: 880;
  line-height: 0.82;
}

.workflow-rail h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.workflow-rail p {
  max-width: 290px;
}

.rhythm-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 5vw;
  align-items: center;
  padding: 120px max(20px, calc((100vw - var(--max)) / 2));
  background: #ecf6f3;
}

.rhythm-copy h2 {
  max-width: 720px;
}

.rhythm-copy p:last-child {
  max-width: 640px;
}

.rhythm-board {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(19, 32, 31, 0.14);
}

.rhythm-number {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  background: var(--ink);
}

.rhythm-number strong {
  color: var(--sun);
  font-size: clamp(4.8rem, 8vw, 7.8rem);
  line-height: 0.8;
}

.rhythm-number span {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.rhythm-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(19, 32, 31, 0.16);
}

.rhythm-items span {
  display: flex;
  align-items: flex-end;
  min-height: 140px;
  padding: 1rem;
  background: #fffdf8;
  font-weight: 820;
}

.rhythm-items span:nth-child(2),
.rhythm-items span:nth-child(5) {
  background: #fbe7df;
}

.rhythm-items span:nth-child(3) {
  background: #fff0bd;
}

.rhythm-items span:nth-child(4),
.rhythm-items span:nth-child(6) {
  background: #dff1ed;
}

.positioning-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 4rem;
  align-items: start;
  padding: 118px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.positioning-band h2 {
  max-width: 860px;
  color: var(--white);
}

.positioning-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.positioning-list p {
  margin: 0;
  padding: 1.25rem 0;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.positioning-list strong {
  color: var(--white);
}

.final-modern-cta {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 110px 20px;
  text-align: center;
  background: #fffdf8;
}

.final-modern-cta h2 {
  max-width: 960px;
  font-size: clamp(3rem, 6.8vw, 7.2rem);
}

.final-modern-cta .hero-actions {
  justify-content: center;
}

@media (max-width: 1100px) {
  .modern-hero {
    grid-template-columns: 1fr;
    background: var(--ink);
  }

  .hero-panel {
    padding: 44px 24px 22px;
  }

  .product-stage {
    min-height: 0;
    padding: 12px 24px 16px;
  }

  .product-stage img {
    width: 100%;
  }

  .rhythm-band,
  .positioning-band,
  .workflow-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .modern-hero {
    min-height: 0;
  }

  .hero-panel h1 {
    font-size: clamp(2.7rem, 11.3vw, 3.7rem);
  }

  .hero-panel .hero-lede {
    font-size: 1.04rem;
  }

  .product-stage img {
    max-height: 160px;
    object-fit: cover;
    object-position: 50% 18%;
  }

  .workflow-rail,
  .rhythm-board,
  .rhythm-items {
    grid-template-columns: 1fr;
  }

  .workflow-band,
  .rhythm-band,
  .positioning-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .workflow-rail article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-rail article:last-child {
    border-bottom: 0;
  }

  .workflow-rail span {
    margin-bottom: 1.6rem;
  }

  .rhythm-band {
    grid-template-columns: 1fr;
  }

  .rhythm-board {
    min-height: 0;
  }

  .rhythm-number {
    min-height: 220px;
  }

  .rhythm-items span {
    min-height: 84px;
  }

  .positioning-band {
    grid-template-columns: 1fr;
  }
}

/* App-style homepage */
.home-app {
  background: #f6fbf9;
}

.home-app .site-header {
  position: sticky;
  top: 0;
  border-bottom: 0;
  background: rgba(246, 251, 249, 0.84);
}

.home-app .nav-wrap {
  min-height: 68px;
}

.home-app .nav-links {
  padding: 0.35rem;
  border: 1px solid rgba(19, 32, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 45px rgba(19, 32, 31, 0.08);
}

.home-app .nav-links a {
  border-radius: 999px;
}

.home-app .nav-links .nav-cta {
  border-radius: 8px;
}

.app-home-main {
  overflow: hidden;
}

.studio-hero {
  width: min(1200px, calc(100% - 40px));
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
  gap: 2.2rem;
  align-items: center;
  padding: 46px 0 30px;
}

.studio-copy {
  min-width: 0;
}

.app-badge {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.22rem 0.58rem;
  border: 1px solid rgba(11, 125, 119, 0.2);
  border-radius: 999px;
  background: #e8f6f2;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.studio-copy h1 {
  max-width: 780px;
  margin-bottom: 0.85rem;
  font-size: clamp(3.45rem, 6.7vw, 6.7rem);
  line-height: 0.92;
}

.studio-copy > p:not(.app-badge) {
  max-width: 620px;
  font-size: 1.12rem;
}

.creator-command {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  max-width: 640px;
  min-height: 62px;
  margin: 1.7rem 0 1rem;
  padding: 0.42rem;
  border: 1px solid rgba(19, 32, 31, 0.12);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(19, 32, 31, 0.12);
}

.creator-command > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: #e8f6f2;
  color: var(--teal);
  font-size: 1.6rem;
  font-weight: 620;
}

.creator-command input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--muted-ink);
  background: transparent;
  font: inherit;
}

.creator-command button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
  background: var(--teal);
  color: var(--white);
  font-weight: 820;
  cursor: pointer;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.68rem;
  max-width: 680px;
}

.quick-actions a {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.85rem;
  border: 1px solid rgba(19, 32, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(19, 32, 31, 0.06);
}

.quick-actions span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 850;
}

.quick-actions strong {
  font-size: 0.88rem;
  line-height: 1.1;
}

.studio-board {
  overflow: hidden;
  border: 1px solid rgba(19, 32, 31, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 32px 90px rgba(19, 32, 31, 0.18);
}

.board-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.72rem 0.86rem;
  border-bottom: 1px solid var(--line);
}

.board-topbar span {
  font-weight: 850;
}

.board-topbar div {
  display: flex;
  gap: 0.5rem;
}

.board-topbar button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 0.8rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 780;
}

.board-topbar button:last-child {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.board-grid {
  display: grid;
  grid-template-columns: 180px minmax(250px, 1fr) 190px;
  gap: 1rem;
  padding: 1rem;
  background: #fbfaf6;
}

.media-stack,
.control-stack {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.media-stack > span,
.control-stack h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 850;
}

.thumb {
  min-height: 74px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.t1 { background-image: linear-gradient(rgba(0,0,0,0.02), rgba(0,0,0,0.02)), url("../images/makeareel-hero-ui.png"); background-position: 44% 40%; }
.t2 { background: linear-gradient(135deg, #f27052, #f4b51d); }
.t3 { background: linear-gradient(135deg, #49775f, #e8f6f2); }
.t4 { background: linear-gradient(135deg, #13201f, #0b7d77); }

.phone-preview {
  display: grid;
  place-items: center;
  min-height: 560px;
}

.phone-screen {
  position: relative;
  width: min(290px, 100%);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 10px solid var(--ink);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10, 17, 16, 0.05) 0%, rgba(10, 17, 16, 0.3) 100%),
    url("../images/makeareel-hero-ui.png");
  background-size: auto 118%;
  background-position: 53% 35%;
  box-shadow: 0 24px 60px rgba(19, 32, 31, 0.24);
}

.phone-tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
}

.phone-screen h2 {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 4.5rem;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.phone-screen p {
  position: absolute;
  left: 1rem;
  bottom: 2.1rem;
  margin: 0;
  color: var(--sun);
  font-weight: 850;
}

.control-stack section {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.swatches,
.caption-row {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.swatches span {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: var(--teal);
}

.swatches span:nth-child(2) { background: var(--coral); }
.swatches span:nth-child(3) { background: var(--sun); }
.swatches span:nth-child(4) { background: var(--ink); }

.caption-row span {
  min-width: 42px;
  min-height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 820;
}

.control-stack strong {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.45rem 0.7rem;
  border-radius: 7px;
  background: #e8f6f2;
  color: var(--teal);
}

.app-feature-strip {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
  box-shadow: 0 20px 70px rgba(19, 32, 31, 0.08);
}

.app-feature-strip article {
  min-height: 230px;
  padding: 1.2rem;
  background: var(--white);
}

.app-feature-strip span {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--coral);
  font-size: 2.8rem;
  font-weight: 880;
  line-height: 0.9;
}

.app-feature-strip h2 {
  margin-bottom: 0.8rem;
  font-size: 1.45rem;
}

.app-daily-panel {
  width: min(1200px, calc(100% - 40px));
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 1rem;
  align-items: stretch;
}

.app-daily-panel > div:first-child,
.daily-meter {
  border-radius: 14px;
  padding: 1.35rem;
  background: var(--ink);
  color: var(--white);
}

.app-daily-panel h2 {
  color: var(--white);
}

.app-daily-panel p:not(.app-badge) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
}

.daily-meter {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  background: var(--teal);
}

.daily-meter strong {
  color: var(--sun);
  font-size: clamp(4.4rem, 8vw, 7.5rem);
  line-height: 0.8;
}

.daily-meter span {
  max-width: 220px;
  color: var(--white);
  font-weight: 850;
}

.app-cta-panel {
  width: min(1200px, calc(100% - 40px));
  margin: 64px auto 96px;
  padding: 4rem 1rem;
  border-radius: 14px;
  background: #fffdf8;
  text-align: center;
}

.app-cta-panel h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.app-cta-panel .hero-actions {
  justify-content: center;
}

@media (max-width: 1050px) {
  .studio-hero,
  .app-daily-panel {
    grid-template-columns: 1fr;
  }

  .board-grid {
    grid-template-columns: 150px minmax(230px, 1fr);
  }

  .control-stack {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-app .nav-links {
    border-radius: 8px;
  }

  .studio-hero {
    width: min(100% - 28px, 1200px);
    min-height: 0;
    padding-top: 44px;
  }

  .studio-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .creator-command {
    grid-template-columns: 40px minmax(0, 1fr);
    border-radius: 14px;
  }

  .creator-command button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.35rem;
  }

  .quick-actions,
  .app-feature-strip,
  .control-stack {
    grid-template-columns: 1fr;
  }

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

  .quick-actions a {
    min-height: 62px;
    padding: 0.7rem;
  }

  .quick-actions strong {
    font-size: 0.82rem;
  }

  .studio-board {
    border-radius: 12px;
  }

  .board-topbar {
    min-height: 48px;
    align-items: center;
    flex-direction: row;
  }

  .board-topbar div {
    display: none;
  }

  .board-grid {
    display: block;
    padding: 1rem;
  }

  .media-stack {
    display: none;
  }

  .control-stack {
    display: none;
  }

  .phone-preview {
    min-height: 430px;
  }

  .app-feature-strip,
  .app-daily-panel,
  .app-cta-panel {
    width: min(100% - 28px, 1200px);
  }
}

/* Full-width app homepage rebuild */
.app-site {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(232, 246, 242, 0.92) 0%, rgba(255, 253, 248, 1) 72%);
}

.app-site .skip-link {
  z-index: 1000;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 28px;
  background: rgba(255, 253, 248, 0.82);
  border-bottom: 1px solid rgba(19, 32, 31, 0.08);
  backdrop-filter: blur(18px);
}

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

.app-brand span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 880;
}

.app-nav {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.32rem;
  border: 1px solid rgba(19, 32, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 50px rgba(19, 32, 31, 0.09);
}

.app-nav a {
  padding: 0.65rem 0.86rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.92rem;
}

.app-nav .app-nav-cta {
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 820;
}

.creator-viewport {
  width: 100%;
  min-height: calc(100vh - 66px);
  padding: 18px 28px 22px;
}

.creator-commandbar {
  display: grid;
  grid-template-columns: minmax(420px, 0.84fr) minmax(420px, 1.16fr);
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 0.75rem;
}

.creator-commandbar p {
  margin-bottom: 0.5rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 880;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.creator-commandbar h1 {
  max-width: 930px;
  margin-bottom: 0;
  font-size: clamp(3rem, 4.4vw, 5.1rem);
  line-height: 0.92;
}

.creator-commandbar form {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
  padding: 0.36rem;
  border: 1px solid rgba(19, 32, 31, 0.11);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(19, 32, 31, 0.11);
}

.creator-commandbar form span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: #e8f6f2;
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 650;
}

.creator-commandbar input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--muted-ink);
  font: inherit;
}

.creator-commandbar button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 1.08rem;
  background: var(--teal);
  color: var(--white);
  font-weight: 850;
}

.creator-shell {
  display: grid;
  grid-template-columns: 74px minmax(250px, 0.72fr) minmax(390px, 1.35fr) minmax(260px, 0.78fr);
  gap: 1px;
  min-height: min(610px, calc(100vh - 205px));
  overflow: hidden;
  border: 1px solid rgba(19, 32, 31, 0.1);
  border-radius: 16px;
  background: var(--line);
  box-shadow: 0 30px 100px rgba(19, 32, 31, 0.16);
}

.creator-rail,
.creator-media,
.creator-stage,
.creator-controls {
  background: rgba(255, 255, 255, 0.9);
}

.creator-rail {
  display: grid;
  align-content: start;
  gap: 0.4rem;
  padding: 0.7rem;
  background: var(--ink);
}

.creator-rail span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 780;
}

.creator-rail .active {
  background: rgba(11, 125, 119, 0.28);
  color: var(--white);
}

.creator-media,
.creator-controls {
  padding: 1rem;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.panel-heading strong {
  font-size: 1.05rem;
}

.panel-heading small,
.creator-controls label {
  color: var(--muted-ink);
  font-size: 0.78rem;
  font-weight: 760;
}

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

.media-thumb {
  display: block;
  min-height: 82px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.thumb-photo {
  background-image: url("../images/makeareel-hero-ui.png");
  background-position: 43% 37%;
}

.thumb-food { background: linear-gradient(135deg, #f27052, #f4b51d); }
.thumb-place { background: linear-gradient(135deg, #49775f, #dceee9); }
.thumb-coffee { background: linear-gradient(135deg, #60412e, #f2d4ad); }
.thumb-van { background: linear-gradient(135deg, #0b7d77, #f7f2e8); }
.thumb-shop { background: linear-gradient(135deg, #101817, #49775f); }

.free-note {
  margin-top: 0.78rem;
  padding: 0.78rem;
  border-radius: 8px;
  background: #e8f6f2;
}

.free-note strong,
.free-note span {
  display: block;
}

.free-note span {
  margin-top: 0.28rem;
  color: var(--muted-ink);
  font-size: 0.86rem;
}

.creator-stage {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(11, 125, 119, 0.12), transparent 38%),
    #fbfaf6;
}

.stage-toolbar {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.stage-toolbar span {
  padding: 0.35rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted-ink);
  font-size: 0.78rem;
  font-weight: 780;
}

.reel-phone {
  display: grid;
  place-items: center;
  padding: 0.85rem 0;
}

.reel-screen {
  position: relative;
  width: min(285px, 64%);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 10px solid var(--ink);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(19, 32, 31, 0.04), rgba(19, 32, 31, 0.48)),
    url("../images/makeareel-hero-ui.png");
  background-size: auto 116%;
  background-position: 54% 36%;
  box-shadow: 0 24px 70px rgba(19, 32, 31, 0.24);
}

.reel-screen > span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
}

.reel-screen h2 {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 4.7rem;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.45);
}

.reel-screen p {
  position: absolute;
  left: 1rem;
  bottom: 2rem;
  margin: 0;
  color: var(--sun);
  font-weight: 850;
}

.timeline-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.55rem;
}

.timeline-strip span {
  min-height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b7d77, #f4b51d);
}

.timeline-strip span:nth-child(2) { background: linear-gradient(135deg, #f27052, #f4b51d); }
.timeline-strip span:nth-child(3) { background: linear-gradient(135deg, #49775f, #e8f6f2); }
.timeline-strip span:nth-child(4) { background: linear-gradient(135deg, #13201f, #0b7d77); }
.timeline-strip span:nth-child(5) { background: linear-gradient(135deg, #f7f2e8, #f27052); }

.creator-controls {
  display: grid;
  align-content: start;
  gap: 0.82rem;
}

.creator-controls section {
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.color-row,
.caption-buttons,
.logo-control {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.color-row span {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--teal);
}

.color-row span:nth-child(2) { background: var(--coral); }
.color-row span:nth-child(3) { background: var(--sun); }
.color-row span:nth-child(4) { background: var(--ink); }

.logo-control span,
.logo-control button,
.caption-buttons button {
  min-width: 42px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
}

.logo-control span {
  display: grid;
  place-items: center;
  background: var(--teal);
  color: var(--white);
}

.creator-controls section > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 850;
}

.app-benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.app-benefits article {
  min-height: 245px;
  padding: 1.4rem 28px;
  border-right: 1px solid var(--line);
}

.app-benefits article:last-child {
  border-right: 0;
}

.app-benefits span {
  display: block;
  margin-bottom: 2rem;
  color: var(--coral);
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 880;
  line-height: 0.85;
}

.app-benefits h2 {
  margin-bottom: 0.72rem;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.app-bottom-cta {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 86px 28px;
  background: var(--ink);
  color: var(--white);
}

.app-bottom-cta h2 {
  max-width: 920px;
  color: var(--white);
}

.app-bottom-cta p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.74);
}

.app-bottom-cta > a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 850;
}

@media (max-width: 1100px) {
  .creator-commandbar {
    grid-template-columns: 1fr;
  }

  .creator-shell {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .creator-media,
  .creator-controls {
    display: none;
  }
}

@media (max-width: 760px) {
  .app-topbar {
    padding: 0 14px;
  }

  .app-nav a:not(.app-nav-cta) {
    display: none;
  }

  .app-nav {
    border-radius: 8px;
  }

  .creator-viewport {
    min-height: 0;
    padding: 24px 14px;
  }

  .creator-commandbar h1 {
    font-size: clamp(2.65rem, 12vw, 3.8rem);
  }

  .creator-commandbar form {
    grid-template-columns: 40px minmax(0, 1fr);
    border-radius: 14px;
  }

  .creator-commandbar button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.36rem;
  }

  .creator-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 14px;
  }

  .creator-rail {
    display: flex;
    overflow-x: auto;
    padding: 0.52rem;
  }

  .creator-rail span {
    min-width: 78px;
    min-height: 42px;
  }

  .creator-stage {
    min-height: 600px;
  }

  .reel-screen {
    width: min(280px, 84%);
  }

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

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

  .app-benefits article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .app-bottom-cta {
    grid-template-columns: 1fr;
    padding: 64px 20px;
  }
}

/* Product-led homepage reset */
.product-home {
  min-height: 100vh;
  background: #f5fbf8;
}

.product-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 28px;
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid rgba(19, 32, 31, 0.08);
  backdrop-filter: blur(18px);
}

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

.product-brand span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 880;
}

.product-nav nav {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.32rem;
  border: 1px solid rgba(19, 32, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 50px rgba(19, 32, 31, 0.09);
}

.product-nav nav a {
  padding: 0.65rem 0.86rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.92rem;
}

.product-nav .nav-primary {
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 820;
}

.product-hero {
  width: 100%;
  min-height: calc(100vh - 68px);
  display: grid;
  align-content: start;
  padding: 36px 24px 0;
  background:
    linear-gradient(180deg, #f5fbf8 0%, #fffdf8 68%),
    radial-gradient(circle at 50% 0%, rgba(11, 125, 119, 0.12), transparent 36%);
}

.hero-center {
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0.24rem 0.64rem;
  border: 1px solid rgba(11, 125, 119, 0.2);
  border-radius: 999px;
  background: #e8f6f2;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-center h1 {
  max-width: 920px;
  margin: 0 auto 0.75rem;
  font-size: clamp(3.1rem, 5.2vw, 5.8rem);
  line-height: 0.94;
}

.hero-center > p:not(.hero-kicker) {
  max-width: 720px;
  margin: 0 auto;
  color: #344542;
  font-size: 1.08rem;
}

.hero-command {
  width: min(700px, 100%);
  min-height: 62px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.38rem;
  margin: 1.25rem auto 0.75rem;
  padding: 0.42rem;
  border: 1px solid rgba(19, 32, 31, 0.12);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(19, 32, 31, 0.13);
}

.hero-command span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: #e8f6f2;
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 650;
}

.hero-command input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--muted-ink);
  font: inherit;
}

.hero-command button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 1.1rem;
  background: var(--teal);
  color: var(--white);
  font-weight: 850;
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.52rem;
  margin-bottom: 0.9rem;
}

.hero-actions-row a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.62rem;
  border: 1px solid rgba(11, 125, 119, 0.22);
  border-radius: 999px;
  color: var(--muted-ink);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 740;
}

.product-showcase {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 0 38px;
}

.product-showcase img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 100px rgba(19, 32, 31, 0.2);
}

.mobile-preview-band {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 4rem;
  align-items: center;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.mobile-preview-band h2 {
  max-width: 820px;
  color: var(--white);
}

.mobile-preview-band p:not(.hero-kicker) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.74);
}

.mobile-device {
  justify-self: center;
  width: min(280px, 100%);
  padding: 0.65rem;
  border-radius: 34px;
  background: #050908;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.mobile-device-screen {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 25px;
  background:
    linear-gradient(180deg, rgba(19, 32, 31, 0.08), rgba(19, 32, 31, 0.55)),
    url("../images/makeareel-hero-ui.png");
  background-size: auto 118%;
  background-position: 54% 36%;
}

.mobile-device-screen span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
}

.mobile-device-screen h3 {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 4.5rem;
  margin: 0;
  color: var(--white);
  font-size: 2.2rem;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.45);
}

.mobile-device-screen p {
  position: absolute;
  left: 1rem;
  bottom: 2rem;
  margin: 0;
  color: var(--sun);
  font-weight: 850;
}

.workflow-surface {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-surface article {
  min-height: 245px;
  padding: 1.45rem 28px;
  border-right: 1px solid var(--line);
}

.workflow-surface article:last-child {
  border-right: 0;
}

.workflow-surface span {
  display: block;
  margin-bottom: 2rem;
  color: var(--coral);
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-weight: 880;
  line-height: 0.85;
}

.workflow-surface h2 {
  margin-bottom: 0.72rem;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.closing-surface {
  width: 100%;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background: #f5fbf8;
  text-align: center;
}

.closing-surface p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.closing-surface h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.closing-surface a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 1.15rem;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 850;
}

@media (max-width: 880px) {
  .product-nav {
    padding: 0 14px;
  }

  .product-nav nav a:not(.nav-primary) {
    display: none;
  }

  .product-nav nav {
    border-radius: 8px;
  }

  .product-hero {
    padding: 42px 14px 0;
  }

  .hero-center {
    text-align: left;
  }

  .hero-center h1 {
    font-size: clamp(2.85rem, 13vw, 4.35rem);
  }

  .hero-center > p:not(.hero-kicker) {
    margin-left: 0;
  }

  .hero-command {
    grid-template-columns: 40px minmax(0, 1fr);
    border-radius: 14px;
  }

  .hero-command button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-actions-row {
    justify-content: flex-start;
  }

  .product-showcase {
    padding-bottom: 28px;
  }

  .product-showcase img {
    min-height: 250px;
    object-fit: cover;
    object-position: 47% 34%;
  }

  .mobile-preview-band,
  .workflow-surface {
    grid-template-columns: 1fr;
  }

  .mobile-preview-band {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .workflow-surface article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-surface article:last-child {
    border-bottom: 0;
  }
}
