:root {
  --paper: #fbfaf7;
  --paper-warm: #f6f1e9;
  --ink: #111111;
  --muted: #5f5d58;
  --soft-muted: #817d74;
  --line: rgba(17, 17, 17, 0.12);
  --gold: #a78f70;
  --gold-soft: #cbb897;
  --panel: rgba(255, 255, 255, 0.72);
  --max: 1440px;
  --gutter: clamp(24px, 5vw, 70px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 18%, rgba(199, 181, 146, 0.13), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--paper) 38%, var(--paper-warm) 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 var(--gutter);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  color: #171717;
  font-size: 15px;
  line-height: 1;
}

.nav-links a {
  padding: 12px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer a:hover,
.text-link:hover {
  color: var(--gold);
}

.section-band {
  border-bottom: 1px solid var(--line);
}

.content-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(72vw, 980px);
  height: min(38vw, 390px);
  content: "";
  background-image: url("./assets/wave-background.png");
  background-position: right bottom;
  background-size: cover;
  opacity: 0.92;
  pointer-events: none;
}

.hero .content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  min-height: 560px;
  align-items: center;
}

.hero-copy {
  max-width: 540px;
  padding: 92px 0 82px;
}

h1,
h2,
p {
  margin: 0;
}

.hero h1 {
  font-size: clamp(64px, 9vw, 104px);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 0.96;
}

.rule {
  display: block;
  width: 48px;
  height: 1px;
  margin: 42px 0 32px;
  background: var(--gold);
}

.rule.centered {
  margin: 18px auto 0;
}

.hero-line {
  max-width: 460px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.28;
}

.body-copy {
  max-width: 500px;
  margin-top: 44px;
  color: #1f1f1d;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 350;
  line-height: 1.85;
}

.project {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
}

.project::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 56%, rgba(199, 181, 146, 0.16), transparent 30%),
    radial-gradient(circle at 36% 10%, rgba(255, 255, 255, 0.82), transparent 42%);
  pointer-events: none;
}

.project-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  min-height: 500px;
  padding-top: 56px;
  padding-bottom: 42px;
}

.section-label {
  color: var(--gold);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.project h2,
.company h2,
.policy-page h1 {
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  margin-top: 42px;
  padding: 0 26px;
  border: 1px solid rgba(167, 143, 112, 0.62);
  color: #5c5043;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.48);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.outline-button svg,
.text-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outline-button:hover,
.outline-button:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.product-figure {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.product-figure img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 26px 30px rgba(58, 51, 43, 0.12));
}

.company {
  padding: 46px var(--gutter) 58px;
  background: rgba(255, 255, 255, 0.72);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 38px;
  text-align: center;
}

.company .section-heading h2 {
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: 0.04em;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.info-item {
  min-height: 144px;
  padding: 6px 28px 0;
  text-align: center;
}

.info-item + .info-item {
  border-left: 1px solid var(--line);
}

.info-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-label {
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.info-value {
  color: #1f1f1d;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.45;
}

.legal-detail,
.address-detail {
  color: #302f2b;
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 400;
  line-height: 1.55;
}

.info-note {
  display: block;
  margin-top: 7px;
  color: var(--soft-muted);
  font-size: 13px;
  line-height: 1.35;
}

.legal-detail .info-note {
  margin-top: 5px;
  font-size: clamp(11px, 0.82vw, 12px);
  line-height: 1.4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7c6c58;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 118px;
  padding: 28px var(--gutter) 34px;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.site-footer a {
  color: #7c6c58;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-page {
  min-height: calc(100vh - 204px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 250, 247, 0.92)),
    url("./assets/wave-background.png") right top / 88% auto no-repeat;
}

.policy-hero,
.policy-content {
  width: min(100%, 820px);
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.policy-hero {
  padding-top: 96px;
  padding-bottom: 28px;
}

.policy-hero .body-copy {
  margin-top: 18px;
  color: var(--soft-muted);
}

.policy-content {
  padding-bottom: 88px;
  color: #2f2d29;
  font-size: 18px;
  line-height: 1.85;
}

.policy-content p + h2 {
  margin-top: 42px;
}

.policy-content h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.policy-content a {
  color: #7c6c58;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    gap: 24px;
    min-height: auto;
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 22px;
    font-size: 14px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero::after {
    width: 100%;
    height: 260px;
    opacity: 0.75;
  }

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

  .hero-copy {
    padding: 72px 0 190px;
  }

  .project-grid {
    min-height: auto;
    padding-top: 58px;
  }

  .product-figure {
    justify-content: center;
    margin-top: 2px;
  }

  .product-figure img {
    width: min(100%, 450px);
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }

  .info-item:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: block;
  }

  .brand {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 25px;
  }

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

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
    letter-spacing: 0.12em;
  }

  .project h2,
  .policy-page h1 {
    font-size: 46px;
  }

  .body-copy {
    margin-top: 32px;
  }

  .company {
    padding-top: 42px;
  }

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

  .info-item {
    padding: 0 0 28px;
  }

  .info-item + .info-item {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 32px;
  }
}

/* Glowhiz app handoff and setup guide */

.start-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 26%, rgba(210, 184, 139, 0.2), transparent 27%),
    radial-gradient(circle at 20% 92%, rgba(255, 255, 255, 0.92), transparent 32%),
    linear-gradient(145deg, #fff 0%, #fbfaf7 44%, #f4ede3 100%);
}

.start-page::before {
  position: fixed;
  z-index: 0;
  right: -6vw;
  bottom: -5vw;
  width: min(92vw, 1380px);
  height: min(46vw, 640px);
  content: "";
  background: url("./assets/wave-background.png") right bottom / cover no-repeat;
  opacity: 0.68;
  pointer-events: none;
}

.start-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(22px);
}

.start-header-brand {
  color: #1a1917;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: 0.24em;
}

.start-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  color: #3f3a34;
  font-size: 14px;
}

.start-nav a {
  transition: color 180ms ease;
}

.start-nav a:hover,
.start-nav a:focus-visible {
  color: #9b7b4f;
}

.start-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  width: min(100%, 1320px);
  min-height: calc(100vh - 152px);
  margin: 0 auto;
  padding: clamp(44px, 5vw, 76px) var(--gutter) 48px;
}

.start-intro {
  position: relative;
  z-index: 2;
  width: min(100%, 570px);
}

.glowhiz-logo-crop {
  position: relative;
  width: 236px;
  height: 138px;
  margin: -20px 0 10px -21px;
  overflow: hidden;
  mix-blend-mode: multiply;
}

.glowhiz-logo-crop img {
  position: absolute;
  top: -73px;
  left: -90px;
  display: block;
  width: 420px;
  max-width: none;
  height: auto;
}

.start-eyebrow {
  color: #a38257;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.start-intro h1,
.guide-hero h1 {
  max-width: 620px;
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 5.8vw, 80px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.start-lede {
  max-width: 540px;
  margin-top: 24px;
  color: #55504a;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 350;
  line-height: 1.72;
}

.download-panel {
  margin-top: 38px;
}

.download-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.download-heading p {
  color: #25221f;
  font-size: 14px;
  font-weight: 600;
}

.download-heading > span {
  color: #847d74;
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

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

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 96px;
  padding: 16px 15px;
  border: 1px solid rgba(69, 60, 49, 0.13);
  border-radius: 18px;
  color: #211e1a;
  text-align: left;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 46px rgba(69, 55, 40, 0.06);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.download-card:hover,
.download-card:focus-visible {
  border-color: rgba(164, 125, 76, 0.45);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 54px rgba(69, 55, 40, 0.1);
  transform: translateY(-2px);
}

.download-card:focus-visible,
.guide-card:focus-visible,
.back-to-download:focus-visible,
.start-nav a:focus-visible,
.guide-support a:focus-visible {
  outline: 2px solid rgba(158, 116, 64, 0.72);
  outline-offset: 3px;
}

.download-card.is-recommended {
  border-color: rgba(167, 128, 79, 0.4);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 237, 224, 0.84));
}

.platform-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(136, 105, 65, 0.25);
  border-radius: 50%;
  color: #7d603b;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  background: rgba(248, 241, 231, 0.82);
}

.platform-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.platform-overline,
.platform-status {
  color: #827a70;
  font-size: 10px;
  line-height: 1.2;
}

.platform-overline {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-copy strong {
  font-size: 14px;
  font-weight: 560;
  line-height: 1.25;
}

.platform-status {
  color: #a18055;
}

.recommended-label {
  position: absolute;
  top: -8px;
  right: 14px;
  padding: 4px 8px;
  border: 1px solid rgba(171, 133, 83, 0.24);
  border-radius: 999px;
  color: #7c5d37;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  background: #f8f2e8;
}

.download-arrow {
  color: #a8885e;
  font-size: 14px;
}

.guide-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 15px;
  padding: 17px 19px;
  border-top: 1px solid rgba(64, 56, 46, 0.12);
  border-bottom: 1px solid rgba(64, 56, 46, 0.12);
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.guide-card:hover {
  border-color: rgba(156, 120, 73, 0.5);
}

.guide-number {
  color: #a38560;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.guide-card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-card-copy > span {
  color: #827b72;
  font-size: 11px;
}

.guide-card-copy strong {
  font-size: 14px;
  font-weight: 560;
}

.guide-arrow {
  color: #9d7c50;
  font-size: 20px;
}

.compatibility-note,
.script-note {
  margin-top: 14px;
  color: #8b847a;
  font-size: 11px;
  line-height: 1.55;
}

.product-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(81, 68, 51, 0.1);
  border-radius: 48% 48% 24px 24px / 28% 28% 24px 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(239, 227, 209, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 38px 90px rgba(91, 71, 46, 0.09);
}

.product-stage::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 18%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(244, 237, 227, 0.92));
  pointer-events: none;
}

.start-product-image {
  position: relative;
  z-index: 2;
  display: block;
  width: min(92%, 560px);
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 28px 44px rgba(54, 43, 30, 0.12));
  mix-blend-mode: multiply;
}

.stage-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(170, 130, 77, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 8%;
  left: 8%;
  width: 84%;
  aspect-ratio: 1;
  transform: rotate(-12deg);
}

.orbit-two {
  top: 18%;
  left: 16%;
  width: 68%;
  aspect-ratio: 1;
  border-color: rgba(170, 130, 77, 0.12);
}

.stage-signal {
  position: absolute;
  z-index: 4;
  top: 17%;
  left: 19%;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #d4ab6e;
  box-shadow: 0 0 0 12px rgba(212, 171, 110, 0.08), 0 0 30px rgba(195, 143, 77, 0.34);
}

.stage-caption {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 23px;
  display: flex;
  gap: 18px;
  color: rgba(74, 65, 54, 0.58);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.start-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 20px var(--gutter);
  border-top: 1px solid rgba(17, 17, 17, 0.09);
  color: #777168;
  font-size: 11px;
}

.start-footer nav {
  display: flex;
  gap: 24px;
}

.start-footer a:hover,
.start-footer a:focus-visible {
  color: #967346;
}

.launch-dialog {
  width: min(calc(100% - 40px), 460px);
  padding: 0;
  border: 1px solid rgba(96, 76, 52, 0.16);
  border-radius: 24px;
  color: #24201c;
  background: #fbf8f3;
  box-shadow: 0 40px 120px rgba(36, 29, 20, 0.25);
}

.launch-dialog::backdrop {
  background: rgba(30, 27, 23, 0.42);
  backdrop-filter: blur(8px);
}

.launch-dialog form {
  position: relative;
  padding: 42px 38px 36px;
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #6e675f;
  font-size: 22px;
  background: rgba(117, 101, 81, 0.08);
  cursor: pointer;
}

.dialog-kicker {
  color: #a38156;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.launch-dialog h2 {
  max-width: 350px;
  margin: 14px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.launch-dialog p:not(.dialog-kicker) {
  color: #666057;
  font-size: 15px;
  line-height: 1.68;
}

.dialog-support {
  display: inline-block;
  margin-top: 22px;
  color: #8e6d43;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dialog-done {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font: inherit;
  background: #25211d;
  cursor: pointer;
}

/* Setup guide */

.guide-main {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 74px var(--gutter) 100px;
}

.guide-hero {
  position: relative;
  max-width: 760px;
  padding-bottom: 64px;
}

.glowhiz-logo-small {
  margin-bottom: 2px;
  transform: scale(0.88);
  transform-origin: left bottom;
}

.back-to-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: #8e6d43;
  font-size: 13px;
}

.setup-steps {
  border-top: 1px solid rgba(64, 56, 46, 0.14);
}

.setup-step {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 28px;
  padding: 38px 0 40px;
  border-bottom: 1px solid rgba(64, 56, 46, 0.14);
}

.step-number {
  color: #b19269;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  letter-spacing: 0.06em;
}

.setup-step h2,
.guide-care h2,
.guide-support h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.setup-step p {
  max-width: 690px;
  margin-top: 12px;
  color: #625d56;
  font-size: 16px;
  line-height: 1.75;
}

.guide-care {
  margin-top: 76px;
  padding: 48px;
  border: 1px solid rgba(111, 89, 60, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 26px 70px rgba(71, 56, 38, 0.06);
}

.guide-care h2 {
  margin-top: 15px;
}

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

.care-grid p {
  padding: 0 28px;
  color: #625d56;
  font-size: 14px;
  line-height: 1.7;
}

.care-grid p:first-child {
  padding-left: 0;
}

.care-grid p + p {
  border-left: 1px solid rgba(64, 56, 46, 0.12);
}

.guide-support {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 76px;
}

.guide-support h2 {
  margin-top: 14px;
}

.guide-support > a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(141, 105, 61, 0.48);
  color: #805f37;
  font-size: 15px;
}

@media (max-width: 980px) {
  .start-main {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
  }

  .start-intro {
    width: 100%;
  }

  .product-stage {
    min-height: 560px;
  }

  .start-product-image {
    width: min(80%, 470px);
  }
}

@media (max-width: 680px) {
  .start-header {
    min-height: 68px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .start-header-brand {
    font-size: 16px;
    letter-spacing: 0.2em;
  }

  .start-nav {
    gap: 12px;
    font-size: 12px;
  }

  .start-nav a:first-child {
    display: none;
  }

  .start-main {
    display: block;
    min-height: auto;
    padding: 32px 20px 40px;
  }

  .glowhiz-logo-crop {
    width: 208px;
    height: 116px;
    margin: -22px 0 6px -20px;
  }

  .glowhiz-logo-crop img {
    top: -64px;
    left: -79px;
    width: 372px;
  }

  .start-intro h1,
  .guide-hero h1 {
    margin-top: 14px;
    font-size: clamp(46px, 14vw, 62px);
  }

  .start-lede {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.64;
  }

  .download-panel {
    margin-top: 30px;
  }

  .download-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .download-heading > span {
    text-align: left;
  }

  .download-options {
    grid-template-columns: 1fr;
  }

  .download-card {
    min-height: 86px;
  }

  .product-stage {
    min-height: 430px;
    margin-top: 48px;
    border-radius: 46% 46% 20px 20px / 20% 20% 20px 20px;
  }

  .start-product-image {
    width: min(88%, 390px);
  }

  .stage-caption {
    right: 20px;
    bottom: 17px;
    gap: 12px;
    font-size: 8px;
  }

  .start-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: auto;
    padding: 24px 20px 28px;
    line-height: 1.5;
  }

  .launch-dialog form {
    padding: 40px 25px 28px;
  }

  .launch-dialog h2 {
    font-size: 30px;
  }

  .guide-main {
    padding: 34px 20px 76px;
  }

  .guide-hero {
    padding-bottom: 48px;
  }

  .glowhiz-logo-small {
    margin-bottom: -2px;
  }

  .setup-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    padding: 30px 0 32px;
  }

  .setup-step h2 {
    font-size: 29px;
  }

  .setup-step p {
    font-size: 15px;
    line-height: 1.68;
  }

  .guide-care {
    margin-top: 50px;
    padding: 31px 24px;
  }

  .care-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 22px;
  }

  .care-grid p,
  .care-grid p:first-child {
    padding: 17px 0;
  }

  .care-grid p + p {
    border-top: 1px solid rgba(64, 56, 46, 0.12);
    border-left: 0;
  }

  .guide-support {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    margin-top: 54px;
  }
}

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