:root {
  --text: #6b6375;
  --text-h: #08060d;
  --bg: #fff;
  --border: #e5e4e7;
  --code-bg: #f4f3ec;
  --accent: #aa3bff;
  --accent-bg: rgba(170, 59, 255, 0.1);
  --accent-border: rgba(170, 59, 255, 0.5);
  --social-bg: rgba(244, 243, 236, 0.5);
  --shadow:
    rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;

  --sans: system-ui, 'Segoe UI', Roboto, sans-serif;
  --heading: system-ui, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, Consolas, monospace;

  font: 18px/145% var(--sans);
  letter-spacing: 0.18px;
  color-scheme: light dark;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  @media (max-width: 1024px) {
    font-size: 16px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #9ca3af;
    --text-h: #f3f4f6;
    --bg: #16171d;
    --border: #2e303a;
    --code-bg: #1f2028;
    --accent: #c084fc;
    --accent-bg: rgba(192, 132, 252, 0.15);
    --accent-border: rgba(192, 132, 252, 0.5);
    --social-bg: rgba(47, 48, 58, 0.5);
    --shadow:
      rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px;
  }

  #social .button-icon {
    filter: invert(1) brightness(2);
  }
}

#root {
  width: 1126px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  border-inline: 1px solid var(--border);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

body {
  margin: 0;
}

h1,
h2 {
  font-family: var(--heading);
  font-weight: 500;
  color: var(--text-h);
}

h1 {
  font-size: 56px;
  letter-spacing: -1.68px;
  margin: 32px 0;
  @media (max-width: 1024px) {
    font-size: 36px;
    margin: 20px 0;
  }
}
h2 {
  font-size: 24px;
  line-height: 118%;
  letter-spacing: -0.24px;
  margin: 0 0 8px;
  @media (max-width: 1024px) {
    font-size: 20px;
  }
}
p {
  margin: 0;
}

code,
.counter {
  font-family: var(--mono);
  display: inline-flex;
  border-radius: 4px;
  color: var(--text-h);
}

code {
  font-size: 15px;
  line-height: 135%;
  padding: 4px 8px;
  background: var(--code-bg);
}
:root {
  --bg: #000;
  --line: #1f1f1f;
  --text: #fff;
  --muted: #d2d2d2;
  --orange: #ff5a00;
  --orange-border: #ff6b1a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#root {
  min-height: 100vh;
  background: var(--bg);
}

.page {
  min-height: 100vh;
  max-width: 1416px;
  margin: 0 auto;
  background: #000;
}

.site-header {
  min-height: 94px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 20px 0 24px;
}

.logo {
  width: 214px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  opacity: 0.96;
}

.cta {
  border: 1px solid transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 12px 18px 11px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
}

.header-cta {
  min-width: 132px;
}

.cta-primary {
  background: var(--orange);
}

.cta-outline {
  border-color: var(--orange-border);
}

.hero {
  border-bottom: 1px solid var(--line);
  min-height: 520px;
  display: grid;
  grid-template-columns: 35% 25% 40%;
  align-items: start;
  overflow: hidden;
}

.hero-left {
  padding: 42px 0 24px 34px;
  position: relative;
  z-index: 2;
}

.hero-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100%;
  padding: 40px 8px 0;
}

.hero-title {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
  font-size: 50px;
  font-weight: 900;
}

.hero-title span {
  display: block;
}

.line-white {
  color: #fff;
}

.line-orange {
  color: var(--orange);
}

.intro {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.44;
  color: var(--muted);
  max-width: 430px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 18px;
}

.hero-actions .cta {
  min-width: 188px;
  padding-top: 16px;
  padding-bottom: 15px;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 100%;
  z-index: 1;
}

.hero-right img {
  width: min(760px, 128%);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  transform: translate(-8%, 1%);
}

.brands {
  border-bottom: 1px solid var(--line);
  padding: 10px 22px 9px;
}

.brands-label {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #efefef;
  letter-spacing: 0.02em;
}

.brands-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.brand-item {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-icon {
  color: #fff;
  background: #c60f1b;
  border: 1px solid #ff6b73;
  border-radius: 3px;
}

.brand-snapon {
  color: #e31826;
  font-style: italic;
  font-size: 14px;
}

.brand-milwaukee {
  color: #e21d27;
  font-style: italic;
  font-size: 14px;
}

.brand-dewalt {
  color: #f3c11e;
  font-size: 13px;
}

.brand-makita {
  color: #37b8c9;
  font-size: 13px;
}

.brand-matco {
  color: #f2f2f2;
  font-size: 11px;
}

.brand-craftsman {
  color: #fff;
  background: #c12026;
  border: 1px solid #fff;
  border-radius: 2px;
  min-height: 28px;
}

.brand-husky {
  color: #f0f0f0;
  font-size: 12px;
}

.brand-harbor {
  color: #ef1f26;
  font-size: 12px;
}

.brands img {
  width: 100%;
  height: auto;
  display: block;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 12px 12px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 146px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 90, 0, 0.12), rgba(255, 90, 0, 0) 38%),
    #11161d;
  padding: 18px 18px 17px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.feature-icon {
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  margin-top: 0;
  position: relative;
}

.layout-icon::before,
.layout-icon::after,
.fit-icon::before,
.fit-icon::after,
.work-icon::before,
.work-icon::after,
.warranty-icon::before,
.warranty-icon::after {
  content: '';
  position: absolute;
}

.layout-icon::before {
  inset: 5px 6px 12px 6px;
  border: 3px solid var(--orange);
  border-radius: 4px;
}

.layout-icon::after {
  inset: 16px 11px 6px 11px;
  border-left: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}

.fit-icon::before {
  inset: 5px;
  border: 3px solid var(--orange);
  border-radius: 4px;
}

.fit-icon::after {
  inset: 11px 8px 11px 8px;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}

.work-icon::before {
  inset: 7px 9px 7px 9px;
  border: 3px solid var(--orange);
  border-radius: 10px 10px 14px 14px;
}

.work-icon::after {
  width: 18px;
  height: 18px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  left: 7px;
  top: 7px;
  box-shadow: 0 -9px 0 -6px var(--orange), 0 9px 0 -6px var(--orange);
}

.warranty-icon::before {
  inset: 5px 8px;
  border: 3px solid var(--orange);
  border-radius: 999px 999px 7px 7px;
}

.warranty-icon::after {
  width: 18px;
  height: 10px;
  border-left: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  left: 11px;
  top: 11px;
  transform: rotate(-45deg);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.section-kicker::before,
.section-kicker::after {
  content: '';
  width: 96px;
  height: 2px;
  background: var(--orange);
  flex: 0 0 auto;
}

.meet-boss-copy {
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 0 8px;
}

.meet-boss-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.96;
  text-transform: uppercase;
  font-weight: 900;
}

.meet-boss-definition {
  margin: 0 0 14px;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 700;
  color: #fff;
}

.meet-boss-definition span {
  display: block;
}

.meet-boss-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #f0f0f0;
}

.features h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.02;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

.feature-card > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding-top: 4px;
}

.features h2::after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--orange);
}

.features p {
  margin: 0;
  color: #d8d8d8;
  font-size: 12px;
  line-height: 1.32;
}

.site-footer {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    'brand social copy'
    'links location copy';
  column-gap: 24px;
  row-gap: 10px;
  align-items: start;
  padding: 16px 32px 20px;
}

.footer-brand {
  grid-area: brand;
}

.footer-brand p {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 0.95;
}

.footer-links {
  grid-area: links;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-social {
  grid-area: social;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding-top: 2px;
}

.footer-social a {
  color: inherit;
  display: inline-flex;
}

.social-icon {
  width: 30px;
  height: 30px;
  display: block;
  color: #fff;
  fill: currentColor;
  stroke: currentColor;
}

.footer-links a,
.footer-location,
.footer-copy {
  color: #e8e8e8;
  font-size: 13px;
  line-height: 1.05;
  text-decoration: none;
}

.footer-links a {
  font-weight: 500;
}

.footer-location {
  grid-area: location;
  justify-self: center;
  align-self: start;
  padding-top: 2px;
}

.footer-copy {
  grid-area: copy;
  justify-self: end;
  align-self: end;
}

@media (max-width: 1300px) {
  .logo {
    width: 194px;
  }

  .hero-left {
    padding: 34px 0 20px 24px;
  }

  .hero-center {
    padding-top: 34px;
  }

  .hero-title {
    font-size: 44px;
  }

  .intro {
    font-size: 15px;
    max-width: 390px;
  }

  .hero-right img {
    width: min(660px, 118%);
    transform: translate(-4%, 3%);
  }

  .brands {
    padding: 10px 22px 9px;
  }

  .brands-label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 12px 12px 14px;
  }

  .feature-card {
    min-height: 188px;
    padding: 20px 20px 18px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .features h2 {
    font-size: 24px;
  }

  .features p {
    font-size: 12px;
  }

  .meet-boss-body {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 14px 16px 16px;
    gap: 12px;
    justify-items: center;
  }

  .logo {
    width: 184px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .main-nav a {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .header-cta {
    min-width: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 30px 16px 12px;
  }

  .hero-center {
    padding: 6px 16px 10px;
  }

  .hero-title {
    font-size: clamp(38px, 9.2vw, 56px);
  }

  .intro {
    max-width: none;
    font-size: 16px;
    line-height: 1.4;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .cta {
    min-width: 0;
    padding-top: 13px;
    padding-bottom: 12px;
  }

  .hero-right {
    justify-content: center;
    padding: 4px 10px 14px;
  }

  .hero-right img {
    width: min(100%, 760px);
    transform: none;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 10px 14px 12px;
  }

  .brands {
    padding: 12px 16px 14px;
  }

  .brands-label {
    font-size: 13px;
  }
}

@media (max-width: 420px) {

  .main-nav {
    gap: 8px 10px;
  }

  .main-nav a {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .hero-title {
    font-size: clamp(30px, 11vw, 40px);
    line-height: 0.95;
  }

  .intro {
    font-size: 14px;
    line-height: 1.35;
  }

  .brands {
    padding: 12px 16px 14px;
  }

  .brands-label {
    font-size: 13px;
  }

  .brands-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 10px 16px 12px;
  }

  .feature-card {
    min-height: 150px;
  }

  .features h2 {
    font-size: 20px;
  }

  .features p {
    font-size: 11px;
  }

  .section-kicker::before,
  .section-kicker::after {
    width: 52px;
  }

  .meet-boss-copy {
    max-width: none;
  }

  .meet-boss-definition {
    font-size: 18px;
  }

  .meet-boss-body {
    font-size: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      'brand'
      'links'
      'social'
      'location'
      'copy';
    justify-items: start;
    row-gap: 8px;
    padding: 18px 16px 22px;
  }

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

  .footer-location,
  .footer-copy {
    justify-self: start;
  }
}

.planner-page {
  min-height: 100vh;
  background: #0f1319;
  color: #f3f5f7;
  padding: 24px;
}

.planner-header {
  margin: 0 auto;
  max-width: 1200px;
}

.planner-header h1 {
  margin: 10px 0 10px;
  color: #fff;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 800;
}

.planner-header p {
  margin: 0;
  color: #c8d0da;
  font-size: 15px;
}

.planner-back {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border: 1px solid #394351;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.planner-controls {
  max-width: 1200px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.planner-controls label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.planner-controls input {
  border: 1px solid #3b4450;
  background: #232831;
  color: #f3f5f7;
  height: 38px;
  padding: 0 10px;
}

.planner-generate {
  height: 40px;
  border: 1px solid #2f6fed;
  background: #2f6fed;
  color: #fff;
  letter-spacing: 0.06em;
  font-size: 12px;
  cursor: pointer;
}

.planner-main {
  max-width: 1200px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
}

.planner-canvas-wrap {
  border: 1px solid #2b3440;
  background: #161c24;
  padding: 12px;
}

.planner-canvas {
  width: 100%;
  height: 420px;
  display: block;
  border: 1px solid #2e3440;
  background: #171b22;
}

.planner-summary {
  border: 1px solid #2b3440;
  background: #161c24;
  padding: 14px;
  font-size: 14px;
}

.planner-summary h2,
.planner-summary h3 {
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.planner-summary h2 {
  font-size: 26px;
  font-weight: 800;
}

.planner-summary h3 {
  font-size: 20px;
  font-weight: 700;
}

.planner-summary ul {
  margin: 0 0 12px;
  padding-left: 18px;
}

.planner-variants {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.planner-variants button {
  border: 1px solid #3b4450;
  background: #232831;
  color: #f3f5f7;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
}

.planner-variants button.active {
  border-color: #6ee7b7;
}

.planner-stats p {
  margin: 0 0 6px;
}

.launch-page {
  background:
    radial-gradient(circle at top, rgba(255, 90, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #0f1319 0%, #0c1015 100%);
}

.launch-header {
  margin-bottom: 20px;
}

.launch-hero h1 {
  color: #fff;
}

.launch-block {
  max-width: 1200px;
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #161c24;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.launch-block h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #fff;
}

.launch-block h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.launch-block p {
  margin: 0 0 10px;
  color: #d6dde6;
}

.about-story {
  max-width: 900px;
  padding: 26px 24px;
}

.about-story p {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.6;
  color: #e8edf3;
}

.launch-block ul {
  margin: 0;
  padding-left: 18px;
}

.launch-block li {
  margin-bottom: 6px;
}

.launch-steps {
  margin: 0;
  padding-left: 20px;
  color: #d6dde6;
}

.launch-steps li {
  margin-bottom: 8px;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.launch-grid-tight {
  gap: 10px;
}

.launch-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #232831;
  padding: 14px;
  min-height: 130px;
  border-radius: 14px;
}

.launch-card-soft {
  background:
    linear-gradient(180deg, rgba(255, 90, 0, 0.06), rgba(255, 255, 255, 0.01)),
    #202631;
}

.launch-card-media {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 10px;
  border-radius: 12px;
}

.starter-gallery {
  display: grid;
  gap: 12px;
}

.starter-gallery-main {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.starter-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.starter-thumb {
  width: 100%;
  height: 84px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.75;
}

.starter-thumb.active {
  border-color: #ff6b1a;
  opacity: 1;
}

.launch-figure {
  margin: 0;
}

.launch-figure figcaption {
  color: #d0d7df;
  font-size: 12px;
  line-height: 1.3;
}

.launch-card-cta {
  display: inline-block;
  text-decoration: none;
}

.cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.launch-footer-cta {
  max-width: 1200px;
  margin: 8px auto 0;
}

.launch-footer-cta .cta {
  display: inline-block;
  text-decoration: none;
}

.launch-link {
  color: #9ac4ff;
}

.launch-form {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.launch-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.launch-form input,
.launch-form textarea {
  border: 1px solid #3b4450;
  background: #232831;
  color: #f3f5f7;
  padding: 10px;
}

@media (max-width: 900px) {
  .planner-page {
    padding: 16px;
  }

  .planner-controls {
    grid-template-columns: 1fr;
  }

  .planner-main {
    grid-template-columns: 1fr;
  }

  .planner-canvas {
    height: 320px;
  }

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

  .starter-gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .starter-thumb {
    height: 74px;
  }

  .about-story {
    padding: 18px 16px;
  }

  .about-story p {
    font-size: 18px;
    line-height: 1.55;
  }
}.starter-product-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.starter-product-photo {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #111;
  border: 1px solid #343a42;
  border-radius: 10px;
}

.starter-product-photo:first-child {
  grid-column: 1 / -1;
  height: 440px;
}

@media (max-width: 700px) {
  .starter-product-photos {
    grid-template-columns: 1fr;
  }

  .starter-product-photo,
  .starter-product-photo:first-child {
    grid-column: auto;
    height: auto;
    max-height: 420px;
  }

  html,
  body,
  #root {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .planner-page.launch-page {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px;
    overflow-x: hidden;
  }

  .planner-page.launch-page,
  .planner-page.launch-page section,
  .planner-page.launch-page .launch-hero,
  .planner-page.launch-page .launch-block,
  .planner-page.launch-page .starter-gallery,
  .planner-page.launch-page .starter-gallery-main,
  .planner-page.launch-page .starter-gallery-thumbs,
  .planner-page.launch-page .launch-hero-image,
  .planner-page.launch-page .launch-hero-image img {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .planner-page.launch-page .launch-hero,
  .planner-page.launch-page .launch-block {
    margin: 0 0 12px;
    padding: 12px;
  }

  .planner-page.launch-page .launch-hero-image img {
    display: block;
    height: auto;
    object-fit: contain;
  }

  .planner-page.launch-page .starter-gallery-main {
    height: auto;
    object-fit: contain;
  }

  .planner-page.launch-page .starter-gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .planner-page.launch-page .starter-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .planner-page.launch-page .cta-primary {
    display: block;
    width: 100%;
    min-height: 46px;
  }
}