:root {
  --black: #0d0d0d;
  --black-soft: #171717;
  --paper: #f3f0e9;
  --paper-deep: #e8e3d8;
  --white: #fffef9;
  --ink: #161616;
  --muted-dark: #6f6b64;
  --muted-light: #a8a49d;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(13, 13, 13, 0.14);
  --purple: #7956f5;
  --purple-light: #9d87ff;
  --orange: #ff844c;
  --blue: #cfe9f7;
  --shell: 1180px;
  --header-height: 86px;
  --radius-lg: 36px;
  --radius-md: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--black);
  background: var(--orange);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--black);
  background: var(--white);
  border-radius: 99px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    background 250ms ease,
    border-color 250ms ease,
    backdrop-filter 250ms ease;
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.86);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.site-header.menu-active {
  background: var(--black);
  border-color: var(--line-dark);
  backdrop-filter: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand,
.footer-brand {
  display: block;
  line-height: 0;
}

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

.brand img,
.footer-brand img {
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav .nav-button {
  padding: 10px 17px;
  color: var(--black);
  background: var(--white);
  border-radius: 99px;
}

.main-nav .nav-button:hover,
.main-nav .nav-button:focus-visible {
  color: var(--black);
  background: var(--orange);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

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

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

.hero {
  position: relative;
  min-height: 900px;
  padding: calc(var(--header-height) + 72px) 0 68px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    var(--black);
  background-size: 72px 72px;
}

.hero::before {
  position: absolute;
  inset: auto -10% -45% 35%;
  height: 780px;
  content: "";
  background: radial-gradient(circle, rgba(121, 86, 245, 0.25), transparent 68%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 150px;
  right: 8%;
  width: 240px;
  height: 240px;
  background: rgba(255, 132, 76, 0.13);
  filter: blur(90px);
}

.hero-glow-two {
  bottom: 10%;
  left: -6%;
  width: 300px;
  height: 300px;
  background: rgba(121, 86, 245, 0.12);
  filter: blur(100px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  padding-top: 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: var(--orange);
}

.eyebrow-dark {
  color: var(--muted-dark);
}

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

h1,
h2,
h3 {
  font-family: "Manrope", system-ui, sans-serif;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 6.8vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 em {
  color: var(--purple-light);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 22px;
  border: 0;
  border-radius: 99px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 200ms var(--ease),
    background 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.product-link svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.button-primary:hover {
  background: #6845e8;
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-dark:hover {
  background: #282828;
}

.text-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 600;
  text-underline-offset: 5px;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-meta strong {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.71rem;
}

.hero-meta i {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 660px;
  place-items: center;
}

.phone-halo {
  position: absolute;
  width: min(520px, 100%);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 45%, rgba(157, 135, 255, 0.34), transparent 56%),
    radial-gradient(circle at 60% 68%, rgba(255, 132, 76, 0.26), transparent 50%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.phone-halo::before,
.phone-halo::after {
  position: absolute;
  inset: 9%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.phone-halo::after {
  inset: 21%;
}

.hero-phone {
  position: relative;
  z-index: 3;
  width: 310px;
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 45px 40px rgba(0, 0, 0, 0.55));
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(1.3deg);
  }
  50% {
    transform: translateY(-13px) rotate(0deg);
  }
}

.visual-orbit {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.orbit-tag {
  position: absolute;
  padding: 9px 15px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(26, 26, 26, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  backdrop-filter: blur(12px);
  font-size: 0.77rem;
  font-weight: 600;
}

.orbit-tag-one {
  top: 23%;
  left: 0;
}

.orbit-tag-two {
  top: 15%;
  right: 1%;
}

.orbit-tag-three {
  right: -2%;
  bottom: 26%;
}

.product-stamp {
  position: absolute;
  z-index: 5;
  bottom: 48px;
  left: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
  padding: 12px 16px 12px 12px;
  background: rgba(255, 254, 249, 0.94);
  border-radius: 17px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.product-stamp img {
  width: 43px;
  height: 43px;
  border-radius: 11px;
}

.product-stamp span {
  color: #65615b;
  font-size: 0.68rem;
  line-height: 1.35;
}

.product-stamp strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: bottom left;
}

.hero-scroll span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.section-dark {
  color: var(--white);
  background: var(--black-soft);
}

.intro {
  padding: 140px 0;
  border-block: 1px solid var(--line-dark);
}

.intro-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 54px;
}

.section-index {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro h2 {
  max-width: 880px;
  margin: -10px 0 34px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.intro h2 span {
  color: var(--orange);
}

.intro-grid > div > p {
  max-width: 610px;
  margin: 0 0 0 auto;
  color: var(--muted-light);
  font-size: 1.07rem;
}

.product-section {
  padding: 140px 0;
  background: var(--paper);
}

.product-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 62px;
}

.product-heading h2,
.principles-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.5vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.product-heading > p {
  max-width: 470px;
  margin: 0 0 6px;
  color: var(--muted-dark);
  font-size: 1.1rem;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-lg);
}

.product-content {
  align-self: center;
  padding: 64px 34px 64px 64px;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}

.product-brand img {
  width: 72px;
  height: 72px;
  border-radius: 19px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.product-brand span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.product-brand small {
  color: var(--muted-light);
}

.product-content h3 {
  max-width: 540px;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.product-content > p {
  max-width: 530px;
  color: var(--muted-light);
  font-size: 1.03rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 31px 0 34px;
}

.feature-pills span {
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-dark);
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 600;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.store-badges a {
  transition: transform 180ms var(--ease);
}

.store-badges a:hover {
  transform: translateY(-2px);
}

.store-badges img {
  width: auto;
  height: 46px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.product-link svg {
  transition: transform 180ms ease;
}

.product-link:hover svg {
  transform: translateX(4px);
}

.product-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 720px;
  overflow: hidden;
  background: #cbc2ae;
}

.art-circle {
  position: absolute;
  top: 90px;
  width: 510px;
  height: 510px;
  background: var(--orange);
  border-radius: 50%;
}

.art-grid {
  position: absolute;
  inset: 0;
  opacity: 0.21;
  background:
    linear-gradient(rgba(13, 13, 13, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 13, 13, 0.2) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.product-art > img {
  position: relative;
  z-index: 2;
  width: 335px;
  max-height: 650px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 35px 30px rgba(13, 13, 13, 0.35));
}

.art-note {
  position: absolute;
  z-index: 3;
  padding: 10px 15px;
  color: var(--ink);
  background: rgba(255, 254, 249, 0.88);
  border: 1px solid rgba(13, 13, 13, 0.12);
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(13, 13, 13, 0.1);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 700;
}

.art-note-one {
  top: 28%;
  left: 5%;
}

.art-note-two {
  top: 16%;
  right: 4%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  background: var(--white);
  border-right: 1px solid var(--line-light);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card-accent {
  background: var(--blue);
}

.companion {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 0;
  margin-top: 26px;
  overflow: hidden;
  background: var(--black);
  border-radius: var(--radius-lg);
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.companion-art {
  position: relative;
  min-height: 460px;
  background: #1a1714;
}

.companion-art img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.companion-copy {
  padding: 56px 48px 56px 56px;
  color: var(--white);
}

.companion-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.companion-copy > p {
  max-width: 520px;
  color: var(--muted-light);
  font-size: 1.05rem;
}

.companion-pills span {
  color: rgba(255, 255, 255, 0.72);
}

.companion-link {
  margin-top: 8px;
}

.feature-number {
  display: block;
  margin-bottom: 55px;
  color: var(--muted-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 50%;
  place-items: center;
}

.feature-card-accent .feature-icon {
  background: rgba(255, 255, 255, 0.7);
}

.feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.55;
}

.principles {
  padding: 140px 0;
  color: var(--white);
  background: var(--black);
}

.principles-heading {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 54px;
  margin-bottom: 92px;
}

.principles-heading h2 {
  margin-top: -10px;
}

.principles-list {
  margin-left: 274px;
  border-top: 1px solid var(--line-dark);
}

.principles-list article {
  display: grid;
  grid-template-columns: 60px minmax(180px, 0.7fr) 1fr;
  gap: 30px;
  align-items: baseline;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-dark);
}

.principles-list span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.71rem;
  font-weight: 700;
}

.principles-list h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.principles-list p {
  max-width: 490px;
  margin: 0;
  color: var(--muted-light);
}

.about-section {
  overflow: hidden;
  color: var(--white);
  background: var(--purple);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 720px;
}

.about-mark {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100%;
}

.about-mark::before {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 540px;
  height: 540px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translateY(-50%);
}

.about-mark::after {
  position: absolute;
  top: 50%;
  right: 20%;
  width: 370px;
  height: 370px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translateY(-50%);
}

.about-mark img {
  position: relative;
  z-index: 2;
  width: min(500px, 130%);
  max-width: none;
  margin-left: -35%;
  transform: rotate(-6deg);
}

.about-copy {
  align-self: center;
  max-width: 640px;
  padding: 110px 0 110px 75px;
}

.about-copy .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.about-copy .eyebrow span {
  background: var(--white);
}

.about-copy h2 {
  margin-bottom: 36px;
}

.about-copy p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.72);
}

.about-copy .about-lead {
  color: var(--white);
  font-size: 1.18rem;
}

.text-link-light {
  display: inline-block;
  margin-top: 20px;
  color: var(--white);
}

.contact-section {
  padding: 140px 0;
  background: var(--orange);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.contact-copy h2 {
  margin-bottom: 30px;
}

.contact-copy > p {
  max-width: 430px;
  color: rgba(13, 13, 13, 0.68);
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 42px;
}

.contact-details a {
  font-weight: 700;
  text-underline-offset: 4px;
}

.contact-details address {
  margin-top: 12px;
  color: rgba(13, 13, 13, 0.62);
  font-style: normal;
}

.contact-form {
  align-self: start;
  padding: 42px;
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(72, 31, 12, 0.16);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-form label > span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(13, 13, 13, 0.25);
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a958c;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}

.form-status {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.83rem;
}

.site-footer {
  padding: 76px 0 28px;
  color: var(--white);
  background: var(--black);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.65fr 1fr 0.8fr;
  align-items: start;
  gap: 50px;
  padding-bottom: 68px;
}

.footer-brand img {
  width: auto;
  height: 56px;
}

.footer-top > p {
  max-width: 420px;
  margin: 5px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.footer-top nav {
  display: grid;
  justify-content: end;
  gap: 8px;
}

.footer-top nav a {
  color: var(--muted-light);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-top nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid var(--line-dark);
  font-size: 0.72rem;
}

.footer-bottom a {
  justify-self: center;
}

.footer-bottom span:last-child {
  justify-self: end;
}

/* Undersider */
.legal {
  min-height: 100vh;
  padding: 150px 0 100px;
  color: var(--white);
  background: var(--black);
}

.legal h1 {
  max-width: 760px;
  margin-bottom: 38px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal h2 {
  margin-top: 45px;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.legal p,
.legal li {
  max-width: 720px;
  color: var(--muted-light);
}

.legal a {
  color: var(--white);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.75fr);
    gap: 25px;
  }

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

  .feature-card:nth-child(2) {
    border-right: 0;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .principles-list {
    margin-left: 0;
  }

  .about-mark img {
    margin-left: -20%;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .brand img {
    height: 38px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
    padding: 90px 28px 40px;
    visibility: hidden;
    background: var(--black);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 220ms ease,
      transform 220ms var(--ease),
      visibility 220ms;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 10vw, 3.3rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.18;
  }

  .main-nav .nav-button {
    margin-top: 20px;
    padding: 12px 20px;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    letter-spacing: 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 60px);
  }

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

  h1 {
    font-size: clamp(3.2rem, 13vw, 5rem);
  }

  .hero-visual {
    min-height: 620px;
    margin-top: 20px;
  }

  .hero-scroll {
    display: none;
  }

  .intro,
  .product-section,
  .principles,
  .contact-section {
    padding: 100px 0;
  }

  .intro-grid,
  .principles-heading {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

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

  .companion-art,
  .companion-art img {
    min-height: 320px;
  }

  .companion-copy {
    padding: 42px 32px 48px;
  }

  .product-content {
    padding: 48px 32px;
  }

  .product-art {
    min-height: 630px;
  }

  .principles-list article {
    grid-template-columns: 45px 1fr;
  }

  .principles-list p {
    grid-column: 2;
  }

  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .about-mark {
    min-height: 360px;
  }

  .about-mark img {
    width: 460px;
    margin: 0 auto;
  }

  .about-copy {
    max-width: none;
    padding: 20px 0 100px;
  }

  .contact-shell {
    gap: 55px;
  }

  .footer-top {
    grid-template-columns: 0.5fr 1fr;
  }

  .footer-top nav {
    grid-column: 1 / -1;
    justify-content: start;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .hero {
    padding-bottom: 38px;
    background-size: 48px 48px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 0.64rem;
  }

  h1 {
    font-size: clamp(2.85rem, 14.5vw, 4.1rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .hero-meta {
    flex-wrap: wrap;
    margin-top: 38px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-phone {
    width: 245px;
    max-height: 500px;
  }

  .phone-halo {
    width: 360px;
  }

  .orbit-tag {
    padding: 7px 11px;
    font-size: 0.65rem;
  }

  .orbit-tag-one {
    left: 1%;
  }

  .orbit-tag-two {
    right: 0;
  }

  .product-stamp {
    bottom: 22px;
    left: 0;
    min-width: 210px;
  }

  .intro,
  .product-section,
  .principles,
  .contact-section {
    padding: 78px 0;
  }

  .intro h2,
  .product-heading h2,
  .principles-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .intro-grid > div > p {
    margin-left: 0;
  }

  .product-heading {
    margin-bottom: 38px;
  }

  .product-showcase {
    border-radius: 24px;
  }

  .companion {
    border-radius: 24px;
  }

  .companion-copy {
    padding: 36px 23px 42px;
  }

  .companion-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .product-content {
    padding: 38px 23px 46px;
  }

  .product-brand {
    margin-bottom: 30px;
  }

  .product-content h3 {
    font-size: 2.45rem;
  }

  .store-badges {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-art {
    min-height: 530px;
  }

  .product-art > img {
    width: 270px;
    max-height: 500px;
  }

  .art-circle {
    top: 70px;
    width: 370px;
    height: 370px;
  }

  .art-note-one {
    top: 24%;
    left: 3%;
  }

  .art-note-two {
    top: 13%;
    right: 2%;
  }

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

  .feature-card,
  .feature-card:nth-child(2) {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .feature-number {
    margin-bottom: 34px;
  }

  .principles-heading {
    margin-bottom: 55px;
  }

  .principles-list article {
    grid-template-columns: 32px 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .principles-list p {
    font-size: 0.92rem;
  }

  .about-mark {
    min-height: 280px;
  }

  .about-mark::before {
    right: 0;
    width: 370px;
    height: 370px;
  }

  .about-mark::after {
    right: 12%;
    width: 250px;
    height: 250px;
  }

  .about-mark img {
    width: 340px;
  }

  .about-copy {
    padding-bottom: 80px;
  }

  .contact-form {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-bottom: 52px;
  }

  .footer-top nav {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-bottom a,
  .footer-bottom span:last-child {
    justify-self: start;
  }
}

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