@font-face {
  font-family: "Manrope";
  src: url("../../Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #030303;
  --ink: #111113;
  --muted: #66666a;
  --blue: rgb(82, 181, 211);
  --teal: rgb(82, 181, 211);
  --paper: #f5f5f7;
  --white: #fff;
  --line: rgba(0, 0, 0, 0.1);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-dark: rgba(22, 22, 23, 0.78);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --max: 1180px;
  --icon-radius: 28%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

img {
  -webkit-user-drag: none;
  user-select: none;
}

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(3, 3, 3, 0.88);
  backdrop-filter: saturate(180%) blur(22px);
}

.nav {
  width: min(100% - 40px, var(--max));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
}

.brand img {
  width: clamp(130px, 13vw, 172px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff;
}

.page {
  background: linear-gradient(180deg, #fff 0%, #fbfbfc 48%, var(--paper) 100%);
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(24px, 2.4vw, 34px) 0;
}

main > .section + .section {
  padding-top: 0;
}

.hero {
  min-height: calc(68svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding-top: clamp(24px, 4vw, 52px);
  padding-bottom: clamp(28px, 4.5vw, 58px);
}

.os-product,
.apps-showcase,
.portfolio-shell {
  padding-bottom: clamp(20px, 3vw, 38px);
}

.hero.narrow {
  min-height: auto;
  grid-template-columns: 1fr;
  padding-bottom: 34px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 720;
  letter-spacing: 0;
}

h1 {
  max-width: 540px;
  font-size: clamp(2rem, 3.05vw, 3.15rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.55rem, 2.45vw, 2.55rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.16;
}

.lead {
  max-width: 560px;
  margin-top: 16px;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
}

.accent-text {
  color: var(--blue);
}

.inline-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.link-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 720;
}

.link-action svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-weight: 720;
  backdrop-filter: blur(18px);
}

.button.primary {
  border-color: transparent;
  background: var(--blue);
  color: #061215;
}

.button:hover,
.link-card:hover,
.press-link:hover {
  transform: translateY(-1px);
}

.media-panel,
.card,
.feature,
.panel,
.app-hero-card,
.product-image {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.media-panel {
  overflow: hidden;
  padding: 10px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(62svh, 660px);
  margin: 0 auto;
  border-radius: var(--radius);
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.poster-frame {
  display: block;
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px);
}

.play-button svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.os-mark {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.app-name {
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 760;
}

.app-tagline {
  margin-top: 6px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.app-icon {
  width: clamp(86px, 7.4vw, 104px);
  height: clamp(86px, 7.4vw, 104px);
  border-radius: var(--icon-radius);
  object-fit: cover;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 16px 34px rgba(0, 0, 0, 0.14);
}

.large-icon {
  width: clamp(92px, 10vw, 116px);
  height: clamp(92px, 10vw, 116px);
  border-radius: var(--icon-radius);
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  overflow: hidden;
}

.card-body,
.feature,
.panel {
  padding: clamp(20px, 3.5vw, 36px);
}

.feature p,
.card-body p {
  margin-top: 10px;
}

.home-features {
  margin-top: -46px;
  padding-top: clamp(6px, 1.6vw, 18px);
}

.feature {
  min-height: 218px;
  display: grid;
  align-content: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.image-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-size: cover;
  color: rgba(255, 255, 255, 0.86);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -2;
  background-image: inherit;
  background-position: center;
  background-size: cover;
  filter: blur(18px) saturate(1.08);
  opacity: 0.55;
  transform: scale(1.08);
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
}

.image-card > * {
  position: relative;
  z-index: 1;
}

.image-card h1,
.image-card h2,
.image-card h3 {
  color: #fff;
}

.image-card p,
.image-card .lead {
  color: rgba(255, 255, 255, 0.78);
}

.image-card .accent-text,
.image-card .link-action,
.image-card .kicker {
  color: rgb(112, 207, 234);
}

.image-card .feature-icon {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.24);
  color: rgb(112, 207, 234);
}

.image-coffee {
  background-image: url("../images/pixabay-coffee-notebook.jpg");
}

.image-camera {
  background-image: url("../images/pixabay-camera-notebook.jpg");
}

.image-warm {
  background-image: url("../images/pixabay-warm-desk.jpg");
}

.image-tech {
  background-image: url("../images/pixabay-tech-desk.jpg");
}

.image-ipad {
  background-image: url("../images/pixabay-blank-phone.jpg");
}

.feature:hover {
  border-color: rgba(82, 181, 211, 0.42);
  box-shadow: 0 22px 70px rgba(82, 181, 211, 0.12);
  transform: translateY(-2px);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(82, 181, 211, 0.34);
  border-radius: 50%;
  background: rgba(82, 181, 211, 0.08);
  color: rgb(82, 181, 211);
}

.feature-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.9;
}

.app-card,
.app-hero-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: clamp(22px, 4vw, 42px);
}

.apps-showcase {
  min-height: calc(78svh - 76px);
  display: grid;
  align-items: center;
}

.app-tile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 58px);
  min-height: 320px;
  padding: clamp(28px, 4.8vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.app-tile:hover {
  border-color: rgba(82, 181, 211, 0.46);
  transform: translateY(-2px);
}

.app-tile.image-card {
  background-position: center;
  background-size: cover;
}

.app-tile.image-ipad {
  background-image: url("../images/pixabay-blank-phone.jpg");
}

.app-tile h1 {
  max-width: 100%;
}

.os-product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  padding-bottom: clamp(24px, 4vw, 52px);
}

.os-copy {
  min-height: 100%;
  display: grid;
  align-content: center;
}

.detail-panel {
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  align-items: start;
  gap: clamp(24px, 5vw, 60px);
}

.detail-copy {
  display: grid;
  gap: 16px;
  padding-top: 6px;
}

.detail-copy p {
  font-size: clamp(0.98rem, 1.22vw, 1.08rem);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 18px;
}

.section-heading p:not(.kicker) {
  margin-top: 10px;
}

.screenshot-section {
  overflow: hidden;
}

.screenshot-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(300px, 34vw, 390px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  padding: 2px 0 14px;
}

.screenshot-card {
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.screenshot-card figcaption {
  min-height: 112px;
  padding: 16px 18px;
  color: rgba(17, 17, 19, 0.74);
  font-size: 0.95rem;
  font-weight: 680;
  line-height: 1.42;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(17, 17, 19, 0.68);
  font-size: 0.78rem;
}

.portfolio-shell {
  padding-top: clamp(34px, 5vw, 70px);
}

.work-label {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 720;
}

.portfolio-item {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: stretch;
  gap: 0;
}

.product-image {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 36px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.86);
}

.product-image img {
  max-height: 390px;
  object-fit: contain;
}

.product-panel {
  display: grid;
  align-content: start;
  gap: 10px;
  border-width: 0 0 0 1px;
  border-radius: 0;
  box-shadow: none;
}

.product-logo {
  width: min(100%, 218px);
  margin: 4px 0 18px;
}

.dyson-brand-logo {
  width: min(100%, 104px);
  margin-bottom: 12px;
  object-fit: contain;
}

.product-panel h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
}

.product-panel h1 {
  max-width: 100%;
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.42vw, 1.48rem);
  line-height: 1.12;
  font-weight: 700;
}

.press-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

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

.product-panel .press-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-panel .link-card {
  min-height: 58px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 760;
}

.press-link,
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(17, 17, 19, 0.82);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.press-link {
  white-space: nowrap;
  min-height: 50px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(17, 17, 19, 0.9);
  font-weight: 720;
}

.press-link:hover,
.product-panel .link-card:hover {
  border-color: rgba(82, 181, 211, 0.48);
  box-shadow: 0 12px 30px rgba(82, 181, 211, 0.16);
}

.press-link img {
  display: block;
  width: min(100%, 108px);
  max-height: 30px;
  margin: 0 auto;
  object-fit: contain;
}

.press-link.has-logo .publication-wordmark {
  display: none;
}

.press-link.logo-fallback .publication-wordmark {
  display: block;
}

.publication-wordmark {
  width: 100%;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
}

.publication-wordmark.compact {
  font-size: 1.04rem;
}

.product-panel .kicker {
  margin: 4px 0 2px;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
}

.portfolio-image-card img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.portfolio-image-card {
  border-top: 1px solid var(--line);
}

.not-found-shell {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
}

.not-found-card {
  min-height: min(620px, calc(100svh - 170px));
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(28px, 6vw, 78px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.not-found-code {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(5.2rem, 12vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.not-found-content h1 {
  max-width: 620px;
}

.contact-layout,
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  align-items: stretch;
  gap: 16px;
}

.contact-card,
.privacy-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.contact-email {
  margin-top: 8px;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 760;
  word-break: break-word;
}

.quiet-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.quiet-list div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.about-layout {
  min-height: min(620px, calc(100svh - 124px));
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.about-photo {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.58);
}

.about-photo img {
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 55px rgba(17, 17, 19, 0.14);
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 100%;
  padding: clamp(28px, 5vw, 56px);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.about-copy h1 {
  max-width: 100%;
}

.press-link svg,
.link-card svg {
  width: 14px;
  height: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(17, 17, 19, 0.54);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: var(--glass-dark);
    backdrop-filter: saturate(180%) blur(22px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
  }

  .hero,
  .grid.two,
  .grid.three,
  .app-card,
  .app-hero-card,
  .product-layout,
  .os-product,
  .app-tile,
  .detail-panel,
  .about-layout,
  .contact-layout,
  .privacy-layout,
  .not-found-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .home-features {
    margin-top: 0;
  }

  .video-frame {
    max-width: 420px;
  }

  .press-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-carousel {
    grid-auto-columns: minmax(320px, 64%);
  }

  .apps-showcase {
    min-height: auto;
  }

  .about-layout {
    min-height: auto;
  }

  .about-photo {
    min-height: 320px;
  }

  .about-copy {
    border-left: 0;
    border-top: 0;
  }

  .product-panel {
    border-width: 1px 0 0;
  }
}

@media (max-width: 560px) {
  .nav,
  .section,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: clamp(2rem, 10.8vw, 3rem);
  }

  .section {
    padding: 38px 0;
  }

  .hero {
    gap: 28px;
  }

  .press-row {
    grid-template-columns: 1fr;
  }

  .screenshot-carousel {
    grid-auto-columns: minmax(300px, 92%);
  }

  .screenshot-card figcaption {
    min-height: 126px;
    font-size: 0.98rem;
  }

  .app-tile {
    padding: 28px;
    min-height: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}
