:root {
  --green: #169b62;
  --green-dark: #0c5132;
  --lime: #b8f34a;
  --mint: #f2faf5;
  --mint-strong: #e5f6eb;
  --text: #152019;
  --muted: #607267;
  --line: #ddebe3;
  --white: #fff;
  --shadow: 0 18px 45px rgba(12, 81, 50, 0.1);
  --shadow-soft: 0 8px 20px rgba(12, 81, 50, 0.06);
  --radius: 22px;
  --shell: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: "Plus Jakarta Sans", "Inter", "Avenir Next", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

[hidden] {
  display: none !important;
}

button {
  color: inherit;
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.section {
  padding: 56px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 68px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 235, 227, 0.7);
  backdrop-filter: blur(14px);
}

.header-row {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 1px;
  align-items: center;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand span {
  color: var(--green);
}

.brand-tee {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 26px;
  margin-right: 5px;
  border-radius: 10px 10px 4px 4px;
  background: var(--lime);
}

.brand-tee::after {
  position: absolute;
  bottom: -1px;
  left: 7px;
  width: 5px;
  height: 12px;
  content: "";
  background: var(--green);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.menu-toggle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 3px;
  background: var(--green-dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  padding: 15px 12px;
  color: var(--green-dark);
  font-weight: 600;
}

.site-nav .nav-cta {
  margin-top: 4px;
  border-radius: 13px;
  color: var(--white);
  background: var(--green);
  text-align: center;
}

.site-nav.legal-nav {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-nav.legal-nav a {
  padding: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-nav.legal-nav .nav-cta {
  margin: 0;
  padding: 9px 12px;
  color: var(--white);
}

.hero {
  overflow: hidden;
  padding: 22px 0 36px;
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 243, 74, 0.2), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fff 64%, var(--mint) 100%);
}

.hero-layout {
  display: grid;
  gap: 20px;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--mint-strong);
  font-size: 13px;
  font-weight: 700;
}

.pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  max-width: 420px;
  color: var(--green-dark);
  font-size: clamp(37px, 11.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.hero-subtitle {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.hero-media {
  position: relative;
  overflow: hidden;
  height: clamp(292px, 76vw, 420px);
  margin: 0;
  border-radius: 26px;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

.media-tag {
  position: absolute;
  bottom: 14px;
  left: 50%;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(221, 235, 227, 0.8);
  border-radius: 99px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  transform: translateX(-50%);
}

.media-tag span {
  color: var(--green);
  font-size: 16px;
}

.hero-actions {
  display: grid;
  gap: 10px;
}

.hero-actions-desktop {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 0;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(22, 155, 98, 0.2);
}

.button-primary:hover {
  background: #118553;
}

.button-primary:disabled {
  cursor: not-allowed;
  color: #8ca397;
  background: #e4eee8;
  box-shadow: none;
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--green-dark);
  background: var(--white);
}

.button.compact {
  width: fit-content;
  margin-top: 28px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 600px;
  color: var(--green-dark);
  font-size: clamp(29px, 8vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.section-text {
  max-width: 460px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.step-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.step-number {
  position: absolute;
  top: 12px;
  right: 14px;
  color: #afc4b8;
  font-size: 13px;
  font-weight: 800;
}

.step-icon {
  position: relative;
  grid-row: span 2;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: var(--mint);
}

.step-icon::before,
.step-icon::after {
  position: absolute;
  content: "";
}

.icon-upload::before {
  inset: 15px;
  border: 2px solid var(--green);
  border-radius: 5px;
}

.icon-upload::after {
  right: 17px;
  bottom: 18px;
  width: 17px;
  height: 12px;
  background: var(--green);
  clip-path: polygon(0 100%, 48% 22%, 68% 56%, 82% 39%, 100% 100%);
}

.icon-preview::before {
  top: 17px;
  left: 11px;
  width: 31px;
  height: 20px;
  border: 2px solid var(--green);
  border-radius: 50% / 62%;
}

.icon-preview::after {
  top: 22px;
  left: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.icon-play::before {
  top: 12px;
  left: 19px;
  width: 16px;
  height: 31px;
  border-radius: 10px 10px 0 0;
  background: var(--green);
  clip-path: polygon(0 0, 100% 0, 57% 100%, 44% 100%);
}

.step-card h3 {
  color: var(--green-dark);
  font-size: 18px;
}

.step-card p {
  padding-right: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.transformation {
  background: var(--mint);
}

.split-layout {
  display: grid;
  gap: 32px;
}

.compare-card {
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: center;
  padding: 11px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.compare-card img {
  width: 100%;
  height: 206px;
  object-fit: cover;
  border-radius: 17px;
}

.compare-photo img {
  object-position: center 24%;
}

.compare-product img {
  object-fit: contain;
  object-position: center 43%;
  background: #eef2d9;
}

.compare-card span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 23px;
  font-weight: 700;
}

.proof-layout {
  display: grid;
  gap: 28px;
}

.proof-image {
  overflow: hidden;
  height: 405px;
  border-radius: 26px;
  background: var(--mint);
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 59%;
}

.trust-list {
  display: grid;
  gap: 16px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.trust-list li,
.reassurances span {
  display: flex;
  gap: 11px;
  align-items: center;
}

.check {
  position: relative;
  display: inline-flex;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  border-radius: 50%;
  background: var(--mint-strong);
}

.check::after {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 4px;
  content: "";
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

.gallery {
  padding-top: 12px;
}

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

.text-link {
  flex: none;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.gallery-scroll {
  display: flex;
  gap: 13px;
  overflow-x: auto;
  margin: 0 -20px;
  padding: 0 20px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  min-width: min(69vw, 272px);
  height: 350px;
  overflow: hidden;
  border-radius: 22px;
  scroll-snap-align: start;
  background: var(--mint);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card:first-child img {
  object-position: 64% center;
}

.gallery-card p {
  position: absolute;
  bottom: 13px;
  left: 13px;
  padding: 9px 12px;
  border-radius: 99px;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.gallery-message {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  color: var(--green-dark);
  background: var(--mint-strong);
}

.gallery-message .share-mark {
  display: flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--lime);
  font-size: 24px;
}

.gallery-message h3 {
  font-size: 26px;
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.gallery-message p {
  position: static;
  margin-top: 12px;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 500;
}

.gallery-message a {
  margin-top: 21px;
  color: var(--green);
  font-weight: 700;
}

.create {
  background: var(--mint);
}

.create-layout {
  display: grid;
  gap: 28px;
}

.upload-card {
  display: grid;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.launch-drop {
  cursor: default;
}

.upload-drop {
  position: relative;
  display: flex;
  min-height: 214px;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 25px;
  border: 2px dashed #bbd9c8;
  border-radius: 18px;
  color: var(--green-dark);
  background: var(--mint);
  cursor: pointer;
  text-align: center;
}

.upload-icon {
  position: relative;
  width: 47px;
  height: 42px;
  margin-bottom: 7px;
  border: 2px solid var(--green);
  border-radius: 11px;
}

.upload-icon::before {
  position: absolute;
  top: -8px;
  left: 12px;
  width: 19px;
  height: 8px;
  content: "";
  border-radius: 5px 5px 0 0;
  background: var(--green);
}

.upload-icon::after {
  position: absolute;
  top: 10px;
  left: 13px;
  width: 17px;
  height: 17px;
  content: "";
  border: 2px solid var(--green);
  border-radius: 50%;
}

.upload-drop strong {
  font-size: 17px;
}

.upload-drop > span:not(.upload-icon) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.selected-photo {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-drop.has-photo .selected-photo {
  display: block;
}

.upload-drop.has-photo::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 99px;
  content: "Replace";
  color: var(--green-dark);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.upload-drop.has-photo > :not(.selected-photo) {
  visibility: hidden;
}

.reassurances {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.lock {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 18px;
  flex: 0 0 21px;
  margin-top: 3px;
  border-radius: 4px;
  background: var(--mint-strong);
}

.lock::before {
  position: absolute;
  top: -7px;
  left: 6px;
  width: 9px;
  height: 10px;
  content: "";
  border: 2px solid var(--green);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.upload-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.upload-status.is-error {
  color: #b53636;
  font-weight: 600;
}

.creator-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--text);
  background: var(--white);
}

.creator-modal::backdrop {
  background: rgba(12, 36, 25, 0.42);
  backdrop-filter: blur(4px);
}

.creator-frame {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--white);
}

.creator-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.creator-back,
.creator-close {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--green-dark);
  background: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.creator-back {
  opacity: 0;
  pointer-events: none;
}

.creator-back.available {
  opacity: 1;
  pointer-events: auto;
}

.creator-header-copy {
  display: grid;
  gap: 2px;
  text-align: center;
}

.creator-header-copy strong {
  color: var(--green-dark);
  font-size: 16px;
}

.creator-header-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.creator-panel {
  display: none;
  width: auto;
  margin: 0 20px;
  padding: 28px 0 32px;
}

.creator-panel.is-active {
  display: block;
}

.creator-intro {
  margin-bottom: 22px;
}

.creator-intro h2,
.creator-generating h2 {
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.creator-intro > p:last-child {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.flow-upload-card {
  display: grid;
  gap: 18px;
}

.flow-drop {
  min-height: 282px;
}

.photo-tips {
  display: grid;
  gap: 5px;
  padding: 14px 15px;
  border-radius: 15px;
  background: var(--mint);
  font-size: 13px;
}

.photo-tips strong {
  color: var(--green-dark);
}

.photo-tips span {
  color: var(--muted);
}

.upload-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fafcfb;
  cursor: pointer;
}

.upload-consent input {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.upload-consent span {
  display: grid;
  gap: 4px;
}

.upload-consent strong {
  color: var(--green-dark);
  font-size: 13px;
}

.upload-consent small,
.privacy-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.privacy-note {
  margin-top: -5px;
  padding: 0 3px;
}

.creator-generating {
  padding-top: 48px;
  text-align: center;
}

.generation-visual {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  height: 208px;
  margin: 0 auto 34px;
  border-radius: 26px;
  background: var(--mint);
}

.generation-visual img {
  width: 88px;
  height: 118px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.generation-arrow {
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
}

.tee-silhouette {
  position: relative;
  width: 68px;
  height: 130px;
  border-radius: 45% 45% 20px 20px;
  background: linear-gradient(180deg, rgba(22, 155, 98, 0.23), rgba(184, 243, 74, 0.58));
  animation: tee-breathe 1200ms ease-in-out infinite alternate;
}

.tee-silhouette::after {
  position: absolute;
  bottom: -28px;
  left: 27px;
  width: 14px;
  height: 50px;
  content: "";
  background: rgba(22, 155, 98, 0.35);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.generation-message {
  margin: 15px 0 22px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.generation-loader {
  display: block;
  width: 156px;
  height: 7px;
  overflow: hidden;
  margin: 0 auto 32px;
  border-radius: 99px;
  background: var(--mint-strong);
}

.generation-loader::after {
  display: block;
  width: 62px;
  height: 100%;
  content: "";
  border-radius: inherit;
  background: var(--green);
  animation: loading-slide 1250ms ease-in-out infinite;
}

.demo-disclosure {
  max-width: 300px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.creator-error {
  padding-top: 58px;
  text-align: center;
}

.creator-error h2 {
  margin-bottom: 13px;
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.error-mark {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border-radius: 50%;
  color: #b53636;
  background: #fff0ee;
  font-size: 31px;
  font-weight: 700;
}

.error-copy {
  max-width: 330px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.preview-product {
  overflow: hidden;
  margin: 0 0 17px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #eef2d9;
}

.preview-product img {
  width: 100%;
  height: min(54vh, 430px);
  object-fit: contain;
}

.preview-product figcaption {
  padding: 12px 15px;
  color: var(--muted);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.preview-compare {
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  gap: 9px;
  align-items: center;
  margin: 0 0 16px;
}

.preview-compare figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--mint);
}

.preview-compare img {
  width: 100%;
  height: 105px;
  object-fit: cover;
}

.preview-compare figure:last-child img {
  object-fit: contain;
  background: #eef2d9;
}

.preview-compare figcaption {
  padding: 8px 6px;
  color: var(--muted);
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.preview-compare > span {
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.preview-note {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 13px;
  color: var(--muted);
  background: var(--mint);
  font-size: 12px;
  line-height: 1.45;
}

.creator-actions {
  display: grid;
  gap: 10px;
}

.customize-product,
.checkout-product {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 25px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--mint);
}

.customize-product img,
.checkout-product img {
  width: 76px;
  height: 92px;
  border-radius: 13px;
  object-fit: contain;
  background: #eef2d9;
}

.customize-product div,
.checkout-product div {
  display: grid;
  gap: 4px;
}

.customize-product strong,
.checkout-product strong {
  color: var(--green-dark);
  font-size: 15px;
}

.customize-product span,
.checkout-product span {
  color: var(--muted);
  font-size: 12px;
}

.customize-product b,
.checkout-product b {
  color: var(--green-dark);
  font-size: 14px;
  white-space: nowrap;
}

.customize-form {
  display: grid;
  gap: 19px;
  margin-bottom: 20px;
}

.quantity-row,
.gift-option {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.quantity-row > div:first-child,
.gift-option span {
  display: grid;
  gap: 4px;
}

.quantity-row strong,
.gift-option strong {
  color: var(--green-dark);
  font-size: 14px;
}

.quantity-row span,
.gift-option small {
  color: var(--muted);
  font-size: 12px;
}

.quantity-control {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.quantity-control button {
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--green-dark);
  background: var(--mint);
  cursor: pointer;
  font-size: 21px;
}

.quantity-control output {
  width: 37px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.gift-option {
  cursor: pointer;
}

.gift-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
}

.gift-option span {
  flex: 1;
}

.gift-option b {
  color: var(--green-dark);
  font-size: 14px;
}

.price-card {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 17px;
  background: var(--mint);
}

.price-card div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 9px;
}

.price-card span {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.price-card div strong {
  color: var(--green-dark);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.price-card p {
  color: var(--muted);
  font-size: 12px;
}

.price-card p strong {
  color: var(--green-dark);
}

.checkout-form {
  display: grid;
  gap: 13px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.checkout-form input {
  height: 49px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: var(--white);
  font: inherit;
  font-weight: 500;
}

.checkout-form input:focus {
  border-color: var(--green);
  outline: 2px solid rgba(22, 155, 98, 0.14);
}

.checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkout-totals {
  display: grid;
  gap: 9px;
  margin-top: 8px;
  padding: 15px;
  border-radius: 15px;
  background: var(--mint);
}

.checkout-totals p,
.confirmation-summary p {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.checkout-totals strong,
.confirmation-summary strong {
  color: var(--green-dark);
}

.checkout-grand-total {
  margin-top: 4px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  font-size: 16px !important;
  font-weight: 700;
}

.prototype-note {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: #fafcfb;
  font-size: 12px;
  line-height: 1.45;
}

.checkout-gate-note {
  margin-bottom: 14px;
  padding: 11px 13px;
  border: 1px solid rgba(22, 155, 98, 0.18);
  border-radius: 12px;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 12px;
  line-height: 1.45;
}

.creator-confirmation {
  text-align: center;
}

.confirmation-mark {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin: 7px auto 20px;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint-strong);
  font-size: 28px;
  font-weight: 700;
}

.creator-confirmation h2 {
  color: var(--green-dark);
  font-size: 29px;
  line-height: 1.16;
  letter-spacing: -0.06em;
}

.confirmation-copy {
  margin: 14px 0 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.confirmation-product {
  overflow: hidden;
  height: 265px;
  margin: 0 0 18px;
  border-radius: 20px;
  background: #eef2d9;
}

.confirmation-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.confirmation-summary {
  display: grid;
  gap: 11px;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 16px;
  background: var(--mint);
  text-align: left;
}

.confirmation-track {
  min-height: 44px;
  border: 0;
  color: var(--green);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.tracking {
  background: var(--mint);
}

.tracking-layout {
  display: grid;
  gap: 28px;
}

.tracking-card {
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.tracking-form {
  display: grid;
  gap: 13px;
}

.tracking-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.tracking-form input {
  height: 51px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  font: inherit;
  font-weight: 500;
}

.tracking-form input:focus {
  border-color: var(--green);
  outline: 2px solid rgba(22, 155, 98, 0.14);
}

.tracking-demo {
  min-height: 44px;
  border: 0;
  color: var(--green);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.tracking-result {
  margin-top: 19px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.tracking-result-head {
  display: flex;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 25px;
}

.tracking-result-head span:first-child {
  color: var(--muted);
  font-size: 12px;
}

.tracking-result-head h3 {
  margin-top: 6px;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.status-pill {
  flex: none;
  padding: 8px 11px;
  border-radius: 99px;
  color: var(--green-dark);
  background: var(--lime);
  font-size: 11px;
  font-weight: 700;
}

.tracking-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tracking-timeline[hidden],
.tracking-support[hidden],
.tracking-result.has-tracking-error .tracking-timeline,
.tracking-result.has-tracking-error .tracking-support {
  display: none !important;
}

.tracking-timeline li {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 65px;
  padding: 0 0 20px 35px;
  color: #9aac9f;
}

.tracking-timeline li::before {
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 1;
  width: 18px;
  height: 18px;
  content: "";
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.tracking-timeline li:not(:last-child)::after {
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 11px;
  width: 2px;
  content: "";
  background: var(--line);
}

.tracking-timeline li.complete::before {
  border-color: var(--green);
  background: var(--green);
}

.tracking-timeline li.complete::after {
  background: var(--green);
}

.tracking-timeline li.complete::before {
  content: "\2713";
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
}

.tracking-timeline li.active::before {
  border: 5px solid var(--mint-strong);
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green);
}

.tracking-timeline li.complete,
.tracking-timeline li.active {
  color: var(--muted);
}

.tracking-timeline strong {
  color: var(--green-dark);
  font-size: 14px;
}

.tracking-timeline span {
  font-size: 12px;
}

.tracking-support {
  padding-top: 11px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.tracking-disclosure {
  margin-top: 4px;
  padding: 11px 12px;
  border-radius: 11px;
  color: var(--muted);
  background: var(--mint);
  font-size: 11px;
  line-height: 1.45;
}

.tracking-support a {
  color: var(--green);
  font-weight: 700;
}

@keyframes tee-breathe {
  to {
    transform: rotate(-2deg) scale(1.045);
  }
}

@keyframes loading-slide {
  from {
    transform: translateX(-62px);
  }

  to {
    transform: translateX(156px);
  }
}

.faq-layout {
  display: grid;
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 19px 50px 19px 18px;
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 27px;
  height: 27px;
  content: "+";
  border-radius: 50%;
  color: var(--green);
  background: var(--mint);
  font-size: 21px;
  line-height: 27px;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 18px 19px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.final-cta {
  padding: 0 0 58px;
}

.final-card {
  padding: 44px 24px;
  border-radius: 28px;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}

.final-card .eyebrow {
  color: var(--lime);
}

.final-card h2 {
  margin: 0 auto 25px;
  color: var(--white);
  font-size: clamp(30px, 9vw, 47px);
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.final-card .button {
  color: var(--green-dark);
  background: var(--lime);
  box-shadow: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 36px;
}

.footer-row {
  display: grid;
  gap: 26px;
  text-align: center;
}

.footer-row .brand {
  justify-content: center;
}

.footer-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.footer-contact {
  color: var(--green-dark);
  font-weight: 800;
}

.footer-row p {
  color: var(--muted);
  font-size: 13px;
}

.legal-page {
  max-width: 760px;
}

.legal-page h1 {
  margin: 8px 0 12px;
  color: var(--green-dark);
  font-size: clamp(36px, 9vw, 58px);
  line-height: 1.05;
}

.legal-page h2 {
  margin: 30px 0 8px;
  color: var(--green-dark);
  font-size: 20px;
}

.legal-page p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-page a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .shell {
    width: min(100% - 64px, var(--shell));
  }

  .section {
    padding: 80px 0;
  }

  .step-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .step-card {
    display: block;
    min-height: 220px;
    padding: 22px;
  }

  .step-icon {
    margin-bottom: 22px;
  }

  .step-card h3 {
    margin-bottom: 7px;
  }

  .proof-layout,
  .split-layout,
  .create-layout,
  .faq-layout,
  .tracking-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .gallery-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .gallery-card {
    min-width: 0;
  }

  .creator-modal {
    width: min(100% - 48px, 540px);
    max-width: 540px;
    height: min(100dvh - 48px, 920px);
    margin: auto;
    border-radius: 28px;
    box-shadow: var(--shadow);
  }

  .creator-frame {
    overflow-y: auto;
    border-radius: 28px;
  }

  .creator-panel {
    width: min(calc(100% - 40px), 475px);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 920px) {
  .site-header {
    height: 78px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: 29px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0;
    color: var(--muted);
    font-size: 14px;
  }

  .site-nav .nav-cta {
    margin: 0 0 0 11px;
    padding: 15px 21px;
    color: var(--white);
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-layout {
    grid-template-columns: minmax(400px, 0.88fr) minmax(470px, 1fr);
    gap: 60px;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(55px, 5.4vw, 70px);
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 19px;
  }

  .hero-media {
    height: 600px;
    border-radius: 32px;
  }

  .hero-actions-mobile {
    display: none;
  }

  .hero-actions-desktop {
    display: flex;
    margin-top: 36px;
  }

  .hero-actions-desktop .button {
    min-width: 174px;
  }

  .compare-card {
    padding: 16px;
  }

  .compare-card img {
    height: 280px;
  }

  .proof-image {
    height: 590px;
  }

  .upload-card {
    padding: 22px;
  }

  .final-card {
    padding: 72px 40px;
  }

  .footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

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

  .tee-silhouette,
  .generation-loader::after {
    animation: none;
  }
}
