:root {
  --stone: #F4F1E9;
  --paper: #FBFAF7;
  --sage: #4D685B;
  --ink: #1D2521;
  --clay: #C47A5A;
  --mist: #D9DED5;
  --sage-deep: #31483D;
  --sage-soft: #E4E9E0;
  --line: rgba(29, 37, 33, .14);
  --white-line: rgba(251, 250, 247, .18);
  --shadow: 0 24px 60px rgba(29, 37, 33, .10);
  --shadow-soft: 0 12px 32px rgba(29, 37, 33, .07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--stone);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--stone);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--paper);
  background: var(--sage);
}

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

a:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.site-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--ink);
  font-size: 1.13rem;
  font-weight: 800;
  letter-spacing: .19em;
  line-height: 1;
}

.primary-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 40px);
}

.primary-nav {
  justify-content: center;
}

.primary-nav a,
.footer-nav a {
  position: relative;
  color: rgba(29, 37, 33, .72);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.primary-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.primary-nav a:hover,
.footer-nav a:hover {
  color: var(--ink);
}

.primary-nav a:hover::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 15px;
  color: var(--sage-deep);
  border: 1px solid rgba(77, 104, 91, .28);
  border-radius: 999px;
  background: rgba(251, 250, 247, .48);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.status-pill:hover {
  border-color: var(--sage);
  background: var(--paper);
  transform: translateY(-2px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 4px rgba(196, 122, 90, .14);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .87fr) minmax(0, 1.13fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  min-height: 660px;
  padding: clamp(56px, 8vw, 112px) 0 clamp(72px, 9vw, 132px);
}

.hero-copy {
  max-width: 580px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: var(--sage);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
}

.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--clay);
}

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

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -.055em;
}

h1 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 7.4vw, 7.5rem);
  line-height: .91;
}

.hero-lede {
  max-width: 460px;
  margin-bottom: 36px;
  color: rgba(29, 37, 33, .69);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 25px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 0 21px;
  border-radius: 999px;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .03em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button-primary {
  color: var(--paper);
  background: var(--sage);
  box-shadow: 0 10px 24px rgba(77, 104, 91, .2);
}

.button-primary span {
  color: #F0B08A;
  font-size: 1.25rem;
  line-height: .7;
}

.button-primary:hover {
  background: var(--sage-deep);
  box-shadow: 0 14px 28px rgba(77, 104, 91, .25);
  transform: translateY(-3px);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(29, 37, 33, .52);
  font-size: .72rem;
  letter-spacing: .02em;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: var(--sage);
  border: 1px solid rgba(77, 104, 91, .35);
  border-radius: 50%;
  font-size: .64rem;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-height: 515px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--sage);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image: linear-gradient(rgba(251, 250, 247, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(251, 250, 247, .08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  opacity: .4;
}

.hero-art::after {
  position: absolute;
  right: -14%;
  bottom: -25%;
  z-index: -1;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(251, 250, 247, .18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 50px rgba(251, 250, 247, .025), 0 0 0 100px rgba(251, 250, 247, .025);
}

.art-orbit {
  position: absolute;
  border: 1px solid rgba(251, 250, 247, .19);
  border-radius: 50%;
  pointer-events: none;
}

.art-orbit-one {
  top: 9%;
  right: 10%;
  width: 112px;
  height: 112px;
}

.art-orbit-two {
  top: 12%;
  right: 13%;
  width: 82px;
  height: 82px;
  border-color: rgba(240, 176, 138, .7);
}

.art-caption,
.art-footnote {
  position: absolute;
  z-index: 2;
  color: rgba(251, 250, 247, .72);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.art-caption {
  top: 28px;
  right: 30px;
  left: 30px;
  display: flex;
  justify-content: space-between;
}

.art-caption span:last-child {
  color: rgba(251, 250, 247, .48);
}

.art-footnote {
  right: 30px;
  bottom: 26px;
  left: 30px;
  color: rgba(251, 250, 247, .5);
  text-align: right;
}

.product-composition {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(112%, 660px);
  min-width: 560px;
  transform: translate(-50%, -44%);
}

.category-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 22px 0 34px;
}

.section-heading {
  max-width: 620px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: .98;
}

.section-intro {
  max-width: 200px;
  margin: 0 0 5px;
  color: rgba(29, 37, 33, .58);
  font-size: .82rem;
  line-height: 1.55;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: clamp(72px, 11vw, 150px);
}

.category-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 465px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.category-card-smart {
  color: var(--paper);
  background: var(--sage);
}

.category-card-home {
  color: var(--ink);
  background: var(--mist);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  padding: 28px 31px 0;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.category-card-smart .card-topline {
  color: rgba(251, 250, 247, .63);
}

.category-card-home .card-topline {
  color: rgba(29, 37, 33, .56);
}

.card-content {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 360px;
  padding: 47px 31px 36px;
}

.card-content h3 {
  max-width: 320px;
  margin-bottom: 17px;
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1.02;
}

.card-content p {
  max-width: 315px;
  margin-bottom: 27px;
  color: rgba(29, 37, 33, .62);
  font-size: .85rem;
  line-height: 1.6;
}

.category-card-smart .card-content p {
  color: rgba(251, 250, 247, .66);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding-bottom: 4px;
}

.text-link span {
  color: var(--clay);
  font-size: 1.05rem;
  line-height: .7;
}

.card-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 45%;
}

.card-visual-smart {
  background: linear-gradient(145deg, rgba(49, 72, 61, .05), rgba(29, 37, 33, .23));
}

.card-visual-smart::before,
.card-visual-smart::after {
  position: absolute;
  border: 1px solid rgba(251, 250, 247, .16);
  border-radius: 50%;
  content: "";
}

.card-visual-smart::before {
  right: 15%;
  bottom: -52%;
  width: 66%;
  aspect-ratio: 1;
}

.card-visual-smart::after {
  right: 24%;
  bottom: -34%;
  width: 48%;
  aspect-ratio: 1;
}

.smart-ring,
.smart-core {
  position: absolute;
  top: 50%;
  left: 56%;
  border-radius: 50%;
  transform: translate(-50%, -46%);
}

.smart-ring-one {
  width: 140px;
  height: 140px;
  border: 1px solid rgba(251, 250, 247, .38);
}

.smart-ring-two {
  width: 94px;
  height: 94px;
  border: 1px solid rgba(240, 176, 138, .72);
}

.smart-core {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--clay);
  box-shadow: 0 0 0 8px rgba(196, 122, 90, .13), 0 0 0 23px rgba(196, 122, 90, .06);
}

.smart-core span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--paper);
}

.card-visual-smart svg {
  position: absolute;
  right: 15%;
  bottom: 15%;
  width: 49%;
  opacity: .8;
}

.card-visual-home {
  display: flex;
  align-items: end;
  justify-content: center;
  background: linear-gradient(150deg, rgba(251, 250, 247, .16), rgba(77, 104, 91, .08));
}

.card-visual-home::before {
  position: absolute;
  right: -10%;
  bottom: -75%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(77, 104, 91, .2);
  border-radius: 50%;
  content: "";
}

.card-visual-home svg {
  position: relative;
  z-index: 1;
  width: 70%;
  margin-bottom: 14px;
}

.launch-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(90px, .34fr) 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  min-height: 300px;
  padding: 50px clamp(28px, 5vw, 72px);
  overflow: hidden;
  color: var(--paper);
  border-radius: 28px;
  background: var(--ink);
}

.launch-section::before {
  position: absolute;
  top: -160px;
  right: 11%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(251, 250, 247, .12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 52px rgba(251, 250, 247, .025), 0 0 0 105px rgba(251, 250, 247, .025);
}

.launch-section::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(77, 104, 91, .22));
  pointer-events: none;
}

.launch-mark,
.launch-copy,
.launch-stamp {
  position: relative;
  z-index: 1;
}

.launch-mark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 86px;
  height: 86px;
  padding: 17px 14px;
  border: 1px solid rgba(251, 250, 247, .25);
  border-radius: 50%;
  color: var(--paper);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.09em;
  line-height: 1;
  transform: rotate(-9deg);
}

.launch-mark span:last-child {
  align-self: end;
  color: #E4A17D;
  transform: translateY(10px);
}

.launch-copy .eyebrow {
  margin-bottom: 15px;
  color: #D7E0D4;
}

.launch-copy h2 {
  max-width: 580px;
  margin-bottom: 14px;
  color: var(--paper);
  font-size: clamp(2.3rem, 5vw, 4.9rem);
}

.launch-copy > p:last-child {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(251, 250, 247, .62);
  font-size: .92rem;
  line-height: 1.65;
}

.launch-stamp {
  align-self: end;
  color: #E4A17D;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
  padding: 42px 0 35px;
}

.footer-brand .wordmark {
  margin-bottom: 14px;
}

.footer-brand p,
.footer-contact p {
  margin-bottom: 0;
  color: rgba(29, 37, 33, .52);
  font-size: .74rem;
}

.footer-nav {
  justify-content: center;
}

.footer-contact {
  justify-self: end;
  text-align: right;
}

.footer-contact > a {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--sage);
  font-size: .78rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    gap: 25px;
  }

  .primary-nav,
  .footer-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 35px;
  }

  .product-composition {
    left: 52%;
    width: 135%;
  }

  .category-card {
    min-height: 500px;
  }

  .card-content {
    padding-top: 38px;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-shell {
    width: 100%;
    padding: 0 18px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 0 18px;
    min-height: 76px;
  }

  .wordmark {
    font-size: 1rem;
  }

  .status-pill {
    min-height: 38px;
    padding: 0 12px;
    font-size: .61rem;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    width: calc(100% + 36px);
    margin-left: -18px;
    overflow-x: auto;
    padding: 0 18px 16px;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .primary-nav a {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
    min-height: 44px;
    padding: 0 2px;
    font-size: .66rem;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 68px 0 82px;
  }

  .hero-copy {
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: .6rem;
    letter-spacing: .12em;
  }

  h1 {
    max-width: 530px;
    margin-bottom: 22px;
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

  .hero-lede {
    margin-bottom: 28px;
    font-size: .94rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .hero-art {
    min-height: 390px;
    margin-top: 52px;
    border-radius: 23px;
  }

  .art-caption {
    top: 21px;
    right: 20px;
    left: 20px;
    font-size: .52rem;
  }

  .art-footnote {
    right: 20px;
    bottom: 19px;
    left: 20px;
    font-size: .51rem;
  }

  .product-composition {
    top: 51%;
    left: 53%;
    width: 148%;
    min-width: 0;
    transform: translate(-50%, -45%);
  }

  .category-section {
    display: block;
    padding: 0 0 27px;
  }

  .section-heading .eyebrow {
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .section-intro {
    max-width: none;
    margin: 22px 0 0;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 17px;
    padding-bottom: 82px;
  }

  .category-card {
    min-height: 485px;
    border-radius: 23px;
  }

  .card-topline {
    padding: 23px 23px 0;
    font-size: .57rem;
  }

  .card-content {
    max-width: 350px;
    padding: 38px 23px 26px;
  }

  .card-content h3 {
    font-size: 2.05rem;
  }

  .card-content p {
    font-size: .8rem;
  }

  .launch-section {
    grid-template-columns: auto 1fr;
    gap: 22px;
    min-height: 385px;
    padding: 31px 23px 35px;
    border-radius: 23px;
  }

  .launch-mark {
    align-self: start;
    width: 63px;
    height: 63px;
    padding: 12px 10px;
    font-size: 1.1rem;
  }

  .launch-copy {
    padding-top: 3px;
  }

  .launch-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .launch-copy > p:last-child {
    font-size: .79rem;
  }

  .launch-stamp {
    grid-column: 1 / -1;
    align-self: end;
    justify-self: end;
    writing-mode: initial;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 34px 20px;
    padding: 34px 0 27px;
  }

  .footer-nav {
    align-items: flex-end;
    flex-direction: column;
    gap: 14px;
  }

  .footer-nav a {
    font-size: .62rem;
  }

  .footer-contact {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
