:root{
  --bg: #f6fbf8;
  --surface: #ffffff;
  --surface-2: #eef8f3;
  --ink: #101720;
  --muted: #60706a;
  --line: #d8e8df;
  --brand: #28c987;
  --brand-dark: #179464;
  --accent: #11b8c9;
  --accent-soft: #dff8fb;
  --brand-soft: #ddf8eb;
  --shadow: 0 18px 54px rgba(21, 56, 39, .09);
  --shadow-soft: 0 10px 28px rgba(21, 56, 39, .06);
  --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", sans-serif;
  background: linear-gradient(180deg, #f3fcf8 0%, var(--bg) 44%, #fbfefd 100%);
  color: var(--ink);
  line-height: 1.55;
}

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

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

.page-shell{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header{
  padding: 22px 0 12px;
}

.header-shell{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link{
  display: inline-flex;
  align-items: center;
}

.site-logo{
  height: 46px;
  width: auto;
}

.top-nav{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.top-nav a{
  color: var(--ink);
  font-size: .95rem;
  font-weight: 800;
}

.top-nav .nav-cta{
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}

.studio-hero{
  padding: 24px 0 36px;
}

.hero-grid{
  min-height: calc(100vh - 132px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(216,232,223,.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(244,252,248,.94) 58%, rgba(224,249,251,.72));
  box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

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

h1,
h2,
h3{
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1{
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

h2{
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3{
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

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

.hero-text{
  max-width: 62ch;
  margin-top: 22px;
  font-size: clamp(1.06rem, 1.55vw, 1.23rem);
}

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

.button-link,
.card-link{
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.primary-btn,
.primary-card-link{
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 18px 34px rgba(23,148,100,.22);
}

.secondary-btn{
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-media{
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}

.hero-media img{
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface-2);
}

.studio-band,
.value-band,
.final-cta{
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.light-band{
  background: rgba(255,255,255,.54);
}

.studio-section{
  padding: 58px 0;
}

.two-column,
.included-grid,
.value-grid{
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: start;
}

.rich-copy{
  display: grid;
  gap: 14px;
}

.text-link{
  width: fit-content;
  color: var(--brand-dark);
  font-weight: 900;
  border-bottom: 1px solid rgba(40,201,135,.42);
}

.section-heading{
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.section-heading p:not(.section-kicker){
  max-width: 64ch;
}

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

.centered h2,
.centered p{
  margin-inline: auto;
}

.step-grid{
  counter-reset: studio-steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-grid li{
  counter-increment: studio-steps;
  min-height: 168px;
  position: relative;
  padding: 58px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.step-grid li::before{
  content: counter(studio-steps);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-weight: 950;
}

.step-grid strong,
.step-grid span{
  display: block;
}

.step-grid strong{
  margin-bottom: 8px;
  color: var(--ink);
}

.step-grid span{
  color: var(--muted);
  font-size: .96rem;
}

.included-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li{
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.value-band{
  background: linear-gradient(135deg, #ffffff, #ecfbf4 64%, #e5fbfd);
}

.value-grid p{
  max-width: 58ch;
  margin-top: 14px;
}

.value-card{
  display: grid;
  border: 1px solid rgba(40,201,135,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.value-card div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.value-card div:last-child{
  border-bottom: 0;
}

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

.value-card strong{
  color: var(--ink);
  font-size: 1.1rem;
}

.value-card .value-total{
  background: var(--brand-soft);
}

.app-preview-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.app-preview-card{
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.app-preview-card img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface-2);
}

.app-preview-card p{
  margin-top: 8px;
  font-size: .96rem;
}

.app-preview-card .card-link{
  width: 100%;
  margin-top: auto;
  min-height: 48px;
  padding: 0 14px;
  text-align: center;
  font-size: .94rem;
}

.cta-reassurance{
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
}

.final-cta{
  background: #fff;
}

.final-cta-inner{
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.final-cta-inner h2{
  max-width: 15ch;
}

.final-cta-inner p:not(.section-kicker){
  max-width: 62ch;
}

.site-footer{
  padding: 30px 0 44px;
  text-align: center;
}

.site-footer p{
  font-size: .92rem;
}

@media (max-width: 1100px){
  .app-preview-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px){
  .hero-grid,
  .two-column,
  .included-grid,
  .value-grid{
    grid-template-columns: 1fr;
  }

  .hero-grid{
    min-height: auto;
  }
}

@media (max-width: 720px){
  .page-shell{
    width: min(var(--max), calc(100% - 24px));
  }

  .site-header{
    padding-top: 16px;
  }

  .header-shell{
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-logo{
    height: 40px;
  }

  .top-nav{
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .top-nav a{
    font-size: .9rem;
  }

  .top-nav .nav-cta{
    min-height: 40px;
    padding: 0 12px;
  }

  .hero-grid{
    padding: 20px;
  }

  h1{
    max-width: 100%;
    font-size: 2.7rem;
  }

  h2{
    max-width: 100%;
    font-size: 2.12rem;
  }

  .hero-actions{
    flex-direction: column;
  }

  .button-link{
    width: 100%;
  }

  .studio-band,
  .value-band,
  .final-cta,
  .studio-section{
    padding: 42px 0;
  }

  .step-grid,
  .included-list,
  .app-preview-grid{
    grid-template-columns: 1fr;
  }
}
