:root {
  --paper: #f5f2ea;
  --paper-bright: #fbfaf6;
  --ink: #111813;
  --muted: #606861;
  --line: rgba(17, 24, 19, 0.14);
  --forest: #17392a;
  --mint: #b7dfbf;
  --lime: #d8f36f;
  --amber: #ffc979;
  --night: #0d141b;
  --sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
a {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-header,
footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
}
.site-header {
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand img {
  width: 34px;
  height: 34px;
}
nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a,
.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
nav a:hover,
.footer-links a:hover {
  color: var(--forest);
}
nav .nav-download {
  padding: 10px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 66px;
  align-items: center;
  min-height: 780px;
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 72px 0 92px;
}
.eyebrow {
  margin-bottom: 19px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(64px, 7.2vw, 108px);
  font-weight: 640;
  letter-spacing: -0.082em;
  line-height: 0.87;
}
.hero-lead {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
}
.hero-actions,
.ownership-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}
.store-badge,
.android-badge {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  border-radius: 14px;
}
.store-badge {
  gap: 11px;
  min-width: 190px;
  padding: 9px 18px 10px;
  background: #050706;
  color: white;
  font-size: 21px;
  font-weight: 650;
  line-height: 1;
}
.store-badge small,
.android-badge small {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.02em;
}
.apple-mark {
  position: relative;
  width: 26px;
  height: 30px;
  overflow: hidden;
  color: transparent;
}
.apple-mark::before,
.apple-mark::after {
  position: absolute;
  content: '';
  background: white;
}
.apple-mark::before {
  inset: 8px 2px 1px;
  border-radius: 46% 46% 52% 52%;
}
.apple-mark::after {
  top: 0;
  left: 15px;
  width: 8px;
  height: 10px;
  border-radius: 8px 0 8px 0;
  transform: rotate(-30deg);
}
.android-badge {
  gap: 10px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.08;
}
.android-dot {
  width: 27px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 11px 11px 7px 7px;
  opacity: 0.6;
}
.platforms {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}
.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}
.ambient-one {
  top: 2%;
  right: -6%;
  width: 62%;
  aspect-ratio: 1;
  background: rgba(216, 243, 111, 0.72);
}
.ambient-two {
  bottom: 4%;
  left: 0;
  width: 54%;
  aspect-ratio: 1;
  background: rgba(183, 223, 191, 0.78);
}
.tablet {
  position: absolute;
  inset: 6% -3% 7% 2%;
  padding: 14px;
  border-radius: 38px;
  background: #090e12;
  box-shadow:
    0 48px 110px rgba(21, 38, 28, 0.23),
    0 2px 0 rgba(255, 255, 255, 0.16) inset;
  transform: rotate(2deg);
}
.tablet-camera {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #29343e;
}
.app-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
  background: var(--night);
  color: rgba(255, 255, 255, 0.9);
}
.app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}
.app-bar strong {
  font-size: 18px;
}
.app-bar span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.52);
}
.app-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fd481;
  box-shadow: 0 0 12px #5fd481;
}
.screen-switcher {
  display: flex;
  gap: 24px;
  width: fit-content;
  margin: 18px auto 0;
  padding: 8px 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}
.screen-switcher b {
  color: white;
}
.screen-plan {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1fr;
  grid-template-rows: 1fr 0.72fr;
  gap: 4px;
  height: 64%;
  margin: 34px 24px 0;
}
.screen-room {
  position: relative;
  overflow: hidden;
  border: 2px solid #33485b;
  background: #1c2a36;
}
.screen-room span {
  position: absolute;
  top: 12px;
  left: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}
.screen-room i {
  position: absolute;
  top: 49%;
  left: 52%;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 22px 9px rgba(255, 201, 121, 0.4);
}
.screen-room i + i {
  top: 68%;
  left: 28%;
}
.screen-room.living {
  grid-row: span 2;
}
.screen-room.bedroom {
  grid-column: span 2;
}
.screen-room.lit {
  background: radial-gradient(circle at 55% 48%, #806c57, #423e38 58%, #26323a);
}
.screen-room.warm {
  background: radial-gradient(circle at 52% 52%, #685d50, #26323a 65%);
}
.screen-controls {
  position: absolute;
  right: 20px;
  bottom: 17px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}
.screen-controls span {
  color: rgba(255, 255, 255, 0.52);
}
.visual-note {
  position: absolute;
  right: 2%;
  bottom: -2%;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
}
.visual-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(216, 243, 111, 0.28);
}

.marquee {
  overflow: hidden;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  background: var(--paper-bright);
}
.marquee div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 930px;
  gap: 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.experience,
.features {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 126px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 72px;
}
.section-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 620;
  letter-spacing: -0.072em;
  line-height: 0.96;
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.moment {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper-bright);
}
.moment-map {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
}
.moment-copy {
  position: relative;
  z-index: 2;
  padding: 52px;
}
.index {
  display: block;
  margin-bottom: 82px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
}
.moment h3,
.feature-list h3 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 1;
}
.moment-copy p {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}
.mini-plan {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 0.72fr;
  gap: 4px;
  height: 74%;
  margin: 7% 8% 7% 0;
  padding: 16px;
  border: 9px solid var(--night);
  border-radius: 30px;
  background: var(--night);
  box-shadow: 0 34px 70px rgba(20, 42, 28, 0.16);
  transform: rotate(-2deg);
}
.mini-room {
  position: relative;
  border: 2px solid #40556b;
  background: #223241;
}
.mini-living {
  grid-row: span 2;
  background: radial-gradient(circle at 42% 38%, #8a745f, #4d463f 56%, #2b3841);
}
.mini-room span {
  position: absolute;
  top: 15px;
  left: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}
.mini-room i {
  position: absolute;
  top: 44%;
  left: 42%;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 32px 14px rgba(255, 201, 121, 0.45);
}
.mini-room i + i {
  top: 70%;
  left: 67%;
}
.moment-control {
  background: var(--forest);
  color: white;
}
.moment-control .index,
.moment-control p {
  color: rgba(255, 255, 255, 0.61);
}
.control-card {
  position: absolute;
  right: -7%;
  bottom: -8%;
  left: 10%;
  min-height: 245px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px 32px 0 0;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 -20px 70px rgba(8, 21, 14, 0.2);
  backdrop-filter: blur(20px);
}
.control-card > div:first-child {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
}
.control-card b {
  color: var(--lime);
  font-size: 12px;
}
.slider {
  height: 13px;
  margin: 31px 0;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}
.slider i {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber), #fff2bc);
}
.temperature {
  display: flex;
  gap: 12px;
}
.temperature i {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: #ff9e62;
}
.temperature i:nth-child(2) {
  background: #ffcc79;
}
.temperature i:nth-child(3) {
  background: #fff4bd;
}
.temperature i:nth-child(4) {
  background: #c9ebff;
}
.temperature i:nth-child(5) {
  background: #8bc4ff;
}
.moment-build {
  background: var(--mint);
}
.editor-grid {
  position: absolute;
  right: 8%;
  bottom: -4%;
  left: 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  aspect-ratio: 1.45;
  padding: 24px;
  border-radius: 26px 26px 0 0;
  background: rgba(255, 255, 255, 0.45);
}
.editor-grid i {
  border: 1px dashed rgba(17, 24, 19, 0.18);
  border-radius: 8px;
}
.editor-grid .room-cell {
  border-style: solid;
  border-color: rgba(23, 57, 42, 0.35);
}
.editor-grid .mint {
  background: rgba(23, 57, 42, 0.12);
}
.editor-grid .glow {
  background: var(--lime);
}
.editor-grid .target {
  border: 2px solid var(--forest);
  background: rgba(255, 255, 255, 0.7);
}

.cinema {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  min-height: 780px;
  background: var(--night);
  color: white;
}
.cinema-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(50px, calc((100vw - 1320px) / 2));
  padding-right: 60px;
}
.cinema .eyebrow {
  color: var(--lime);
}
.cinema h2 {
  margin-bottom: 30px;
  font-size: clamp(48px, 5.6vw, 84px);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.95;
}
.cinema-copy > p:last-child {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 17px;
}
.cinema-scene {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #151c21 15%, #263327 82%);
}
.lamp-cone {
  position: absolute;
  top: -8%;
  right: -3%;
  width: 62%;
  height: 96%;
  background: radial-gradient(
    ellipse at 90% 0,
    rgba(255, 218, 153, 0.72),
    rgba(255, 201, 121, 0.19) 42%,
    transparent 73%
  );
  filter: blur(8px);
}
.sofa {
  position: absolute;
  right: 11%;
  bottom: 6%;
  width: 56%;
  height: 31%;
  border-radius: 38px 38px 12px 12px;
  background: #5d6c5d;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.28);
}
.sofa::before {
  position: absolute;
  inset: -32% 4% 66%;
  border-radius: 30px 30px 8px 8px;
  background: #718071;
  content: '';
}
.sofa i {
  position: absolute;
  top: -14%;
  left: 13%;
  z-index: 2;
  width: 31%;
  height: 53%;
  border-radius: 18px;
  background: #384b3f;
  transform: rotate(-6deg);
}
.sofa i + i {
  left: 50%;
  background: #87927b;
  transform: rotate(4deg);
}
.side-table {
  position: absolute;
  right: 3%;
  bottom: 10%;
  width: 15%;
  height: 14%;
  border-radius: 50% 50% 12px 12px;
  background: #343b34;
}
.side-table span {
  position: absolute;
  right: 24%;
  bottom: 95%;
  width: 48%;
  height: 90%;
  border-radius: 50% 50% 10% 10%;
  background: #ffcf88;
  box-shadow: 0 0 48px 22px rgba(255, 201, 121, 0.35);
}
.scene-tablet {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 42%;
  aspect-ratio: 1.35;
  padding: 9px;
  border-radius: 20px;
  background: #090e12;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.4);
  transform: perspective(700px) rotateX(11deg) rotateY(8deg) rotate(-4deg);
}
.scene-screen {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3px;
  height: 100%;
  padding: 20px;
  border-radius: 13px;
  background: #111a22;
}
.scene-screen i {
  border: 1px solid #496076;
  background: radial-gradient(circle, #8a7158, #33414a 66%);
}
.scene-screen i:first-child {
  grid-row: span 2;
}
.touch-ripple {
  position: absolute;
  bottom: 26%;
  left: 23%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(216, 243, 111, 0.12),
    0 0 0 22px rgba(216, 243, 111, 0.07);
}
.film-label {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-heading {
  margin-bottom: 82px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.feature-list article {
  min-height: 390px;
  padding: 45px 50px 50px 0;
  border-top: 1px solid var(--line);
}
.feature-list article:nth-child(odd) {
  padding-right: 70px;
  border-right: 1px solid var(--line);
}
.feature-list article:nth-child(even) {
  padding-left: 70px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 74px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  font-size: 24px;
}
.feature-list h3 {
  font-size: clamp(31px, 3.1vw, 48px);
}
.feature-list p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.ownership {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 90px;
  padding: 130px max(24px, calc((100vw - 1320px) / 2));
  background: var(--lime);
}
.ownership h2 {
  margin: 0;
  font-size: clamp(56px, 7vw, 102px);
  font-weight: 630;
  letter-spacing: -0.08em;
  line-height: 0.91;
}
.ownership-copy {
  align-self: end;
  padding-bottom: 8px;
}
.ownership-copy > p {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(17, 24, 19, 0.7);
  font-size: 19px;
}
.android-inline {
  color: rgba(17, 24, 19, 0.58);
  font-size: 12px;
}
.android-inline b {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

footer {
  grid-template-columns: 1fr auto;
  gap: 22px;
  min-height: 190px;
  padding: 42px 0;
}
footer > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

/* Privacy policy */
.policy-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: 110px;
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 100px 0 140px;
}
.policy-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}
.policy-intro h1 {
  margin-bottom: 16px;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.95;
}
.policy-intro > p:last-child {
  margin-top: 34px;
  color: var(--muted);
}
.policy-date {
  color: var(--muted);
  font-size: 13px;
}
.policy-content section {
  padding: 0 0 54px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
}
.policy-content section:last-child {
  border-bottom: 0;
}
.policy-content h2 {
  margin-bottom: 24px;
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.policy-content h3 {
  margin: 32px 0 8px;
  font-size: 16px;
}
.policy-content p,
.policy-content li,
.company-details {
  color: #4f574f;
}
.policy-content ul {
  padding-left: 20px;
}
.policy-content li {
  margin-bottom: 8px;
}
.company-details {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}
.company-details div {
  display: grid;
  grid-template-columns: 145px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.company-details dt {
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}
.company-details dd {
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero-visual {
    min-height: 650px;
  }
  .moment-map,
  .cinema,
  .ownership,
  .policy-shell {
    grid-template-columns: 1fr;
  }
  .cinema-copy {
    min-height: 500px;
    padding-right: max(50px, calc((100vw - 1320px) / 2));
  }
  .cinema-scene {
    min-height: 650px;
  }
  .ownership-copy {
    max-width: 650px;
  }
  .policy-shell {
    gap: 62px;
  }
  .policy-intro {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header,
  footer,
  .hero,
  .experience,
  .features,
  .policy-shell {
    width: min(100% - 30px, 1320px);
  }
  .site-header {
    min-height: 72px;
  }
  nav a:not(.nav-download) {
    display: none;
  }
  .hero {
    min-height: 0;
    padding: 64px 0 76px;
  }
  .hero h1 {
    font-size: clamp(54px, 16.5vw, 76px);
  }
  .hero-actions,
  .ownership-badges {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-visual {
    min-height: 430px;
    margin-top: 18px;
  }
  .tablet {
    inset: 4% 0 7%;
    padding: 9px;
    border-radius: 26px;
  }
  .app-screen {
    border-radius: 18px;
  }
  .app-bar {
    height: 48px;
    padding: 0 14px;
  }
  .app-bar strong {
    font-size: 14px;
  }
  .app-bar span,
  .screen-controls {
    font-size: 9px;
  }
  .screen-switcher {
    margin-top: 11px;
    padding: 5px 11px;
    font-size: 8px;
  }
  .screen-plan {
    margin: 20px 13px 0;
  }
  .screen-room span {
    top: 7px;
    left: 7px;
    font-size: 7px;
  }
  .screen-room i {
    width: 15px;
    height: 15px;
  }
  .screen-controls {
    right: 13px;
    bottom: 10px;
    left: 13px;
    padding-top: 9px;
  }
  .marquee {
    overflow-x: auto;
  }
  .marquee div {
    justify-content: flex-start;
    padding: 0 18px;
  }
  .experience,
  .features {
    padding: 88px 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 48px;
  }
  .section-heading h2 {
    font-size: clamp(45px, 13vw, 62px);
  }
  .experience-grid,
  .feature-list {
    display: block;
  }
  .moment,
  .moment-map {
    display: block;
    min-height: 570px;
    margin-bottom: 12px;
  }
  .moment-copy {
    padding: 34px 30px;
  }
  .index {
    margin-bottom: 48px;
  }
  .mini-plan {
    position: absolute;
    right: 0;
    bottom: 4%;
    left: 8%;
    height: 42%;
    margin: 0;
  }
  .control-card {
    left: 6%;
  }
  .cinema-copy {
    min-height: 480px;
    padding: 72px 24px;
  }
  .cinema-scene {
    min-height: 530px;
  }
  .scene-tablet {
    bottom: 13%;
    left: 5%;
    width: 56%;
  }
  .sofa {
    right: 4%;
    width: 64%;
  }
  .feature-list article,
  .feature-list article:nth-child(odd),
  .feature-list article:nth-child(even) {
    min-height: 0;
    padding: 46px 10px 58px;
    border-right: 0;
  }
  .feature-icon {
    margin-bottom: 46px;
  }
  .ownership {
    gap: 54px;
    padding: 90px 24px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 50px 0;
  }
  .company-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
