:root {
  color-scheme: light;
  --ink: #172326;
  --muted: #536569;
  --line: #d8e0de;
  --paper: #f7faf8;
  --white: #ffffff;
  --teal: #0f6f78;
  --teal-dark: #094c54;
  --coral: #e56b50;
  --sun: #f4b860;
  --shadow: 0 18px 45px rgba(16, 35, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a,
[aria-disabled="true"] {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 224, 222, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 188px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
}

.nav-cta.is-disabled,
.site-nav .nav-cta.is-disabled:hover,
.site-nav .nav-cta.is-disabled:focus-visible {
  color: #6f7f83;
  background: #e5ebe9;
  cursor: not-allowed;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 76svh;
  overflow: hidden;
  color: var(--white);
  background: #1e2a2d;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 58%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 24, 0.58);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 44px));
  margin: 0 auto;
  padding: 90px 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc178;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 4.2rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
}

.button-primary {
  color: var(--white);
  background: var(--teal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button-disabled,
.button-disabled:hover,
.button-disabled:focus-visible {
  color: #6f7f83;
  background: #e5ebe9;
  cursor: not-allowed;
}

.intro-band,
.proof-band,
.app-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.content-grid,
.section,
.proof-band,
.app-band,
.site-footer {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  padding: 52px 0;
}

.intro-grid p:last-child {
  color: var(--muted);
  font-size: 1.12rem;
}

.section {
  padding: 82px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading > p:not(.section-kicker),
.quality-copy p,
.app-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-item,
.package-card,
.quality-list article,
.faq-list details {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-item {
  min-height: 220px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 26px;
  color: var(--teal-dark);
  background: #dff0ec;
  border-radius: 8px;
  font-weight: 900;
}

.process-item p,
.quality-list p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.proof-band {
  padding-top: 82px;
  padding-bottom: 82px;
}

.prototype-story {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 28px;
}

.prototype-story figure {
  margin: 0;
}

.prototype-story img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.prototype-story figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.prototype-story p:last-child {
  color: var(--muted);
}

.prototype-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 16px;
}

.prototype-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #d9e5e3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.prototype-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.prototype-gallery figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--white);
}

.quality-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.package-section {
  padding-top: 82px;
}

.package-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.package-card {
  min-height: 250px;
}

.package-card-featured {
  border-color: rgba(15, 111, 120, 0.34);
  box-shadow: var(--shadow);
}

.package-label {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.package-price {
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.package-card p:last-child,
.timeline-list p,
.contact-strip p,
.showcase-offer p,
.diy-kit-note p {
  color: var(--muted);
}

.diy-kit-note {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.diy-kit-photo {
  margin: 0;
}

.diy-kit-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.diy-kit-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.diy-kit-copy .section-kicker {
  margin-bottom: 10px;
}

.diy-kit-copy p:last-child {
  margin-bottom: 0;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.timeline-list article {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-list h3 {
  margin-bottom: 8px;
}

.timeline-list p {
  margin-bottom: 0;
}

.showcase-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 24px;
  background: #eef6f3;
  border: 1px solid rgba(15, 111, 120, 0.28);
  border-radius: 8px;
}

.showcase-offer h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.showcase-offer p:last-child {
  margin-bottom: 0;
}

.refund-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 18px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 900;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-strip h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.contact-strip p:last-child {
  margin-bottom: 0;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quality-list article {
  min-height: 150px;
}

.app-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 54px 0;
}

.app-content {
  max-width: 760px;
}

.homebasket-band {
  padding: 72px 0;
  color: var(--ink);
  background: var(--white);
  border-top: 3px solid #236445;
  border-bottom: 3px solid #236445;
}

.homebasket-content {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: center;
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.homebasket-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-weight: 900;
}

.homebasket-brand img {
  width: 48px;
  height: 48px;
}

.homebasket-content .section-kicker {
  color: #b88a1d;
}

.homebasket-content h2 {
  color: var(--ink);
}

.homebasket-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.button-homebasket {
  margin-top: 10px;
  color: var(--ink);
  background: #ddb13c;
}

.button-homebasket:hover,
.button-homebasket:focus-visible {
  background: #f2c85a;
}

.homebasket-slider {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  justify-self: end;
  overflow: hidden;
  background: #dff0ec;
  border: 2px solid #236445;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.homebasket-slider::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 72px;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--teal) 33%, #ddb13c 33% 66%, var(--coral) 66%);
  border-radius: 999px;
}

.homebasket-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: homebasketSlide 8s infinite;
}

.homebasket-slide-one {
  animation-delay: 0s;
}

.homebasket-slide-two {
  animation-delay: 4s;
}

@keyframes homebasketSlide {
  0%,
  44% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homebasket-slide {
    animation: none;
  }

  .homebasket-slide-one {
    opacity: 1;
  }
}

.faq-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
}

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

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 168px;
  margin-bottom: 10px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
}

.site-footer a {
  text-decoration: none;
}

.footer-disabled {
  color: #7b898c;
  cursor: not-allowed;
}

@media (max-width: 920px) {
  .site-header {
    padding-right: 22px;
    padding-left: 22px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .intro-grid,
  .quality-section,
  .prototype-story,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .process-list,
  .prototype-gallery,
  .package-list,
  .timeline-list,
  .quality-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-band,
  .showcase-offer,
  .diy-kit-note,
  .contact-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .homebasket-content {
    grid-template-columns: 1fr;
  }

  .homebasket-slider {
    justify-self: start;
  }

  .diy-kit-note {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1204px) {
  .site-header {
    padding-right: calc((100% - 1160px) / 2);
    padding-left: calc((100% - 1160px) / 2);
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 158px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-image {
    object-position: 58% 50%;
  }

  .hero-shade {
    background: rgba(11, 22, 24, 0.66);
  }

  .hero-content {
    padding-top: 72px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
  }

  .section,
  .proof-band {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .process-list,
  .prototype-gallery,
  .package-list,
  .timeline-list,
  .quality-list {
    grid-template-columns: 1fr;
  }

  .process-item {
    min-height: 0;
  }
}
