:root {
  --ink: #0b1417;
  --ink-soft: #2d383b;
  --paper: #f4f6f5;
  --white: #ffffff;
  --line: rgba(11, 20, 23, 0.18);
  --aqua: #04ced1;
  --violet: #a93cf0;
  --magenta: #ec25c8;
  --page: min(100% - 48px, 1440px);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  width: 100%;
  margin: 0;
  padding: 22px max(24px, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  background: rgba(231, 234, 233, 0.94);
  border-bottom: 1px solid rgba(11, 20, 23, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wordmark {
  width: 90px;
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
}

.wordmark img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
}

.nav a,
.header-cta {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-cta {
  justify-self: end;
  padding: 9px 0 7px;
  border-bottom: 1px solid var(--ink);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  align-self: center;
  padding: 150px clamp(32px, 6vw, 110px) 90px max(24px, calc((100vw - 1440px) / 2));
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.partners h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4.5rem, 8.2vw, 9.25rem);
  line-height: 0.82;
}

.hero h1::after {
  content: "";
  display: block;
  width: 74px;
  height: 5px;
  margin-top: 42px;
  background: linear-gradient(90deg, var(--aqua), var(--violet), var(--magenta));
}

.hero-lead {
  max-width: 620px;
  margin: 36px 0 0;
  font-size: clamp(1.2rem, 1.65vw, 1.65rem);
  line-height: 1.35;
}

.hero-note {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

.text-link {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

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

.text-link:hover span {
  transform: translateY(4px);
}

.hero-visual {
  position: relative;
  min-height: 100svh;
  margin: 0;
  background: #c7c6bd;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 17, 0.1), transparent 35%, rgba(4, 12, 17, 0.28));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  right: 26px;
  bottom: 28px;
  left: 26px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-ribbon {
  min-height: 76px;
  padding: 20px max(24px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.brand-ribbon i {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(4, 206, 209, 0.15);
}

.section {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(96px, 11vw, 176px) 0;
  display: grid;
  grid-template-columns: 80px minmax(300px, 0.9fr) minmax(360px, 1fr);
  column-gap: clamp(32px, 6vw, 96px);
}

.section-index {
  padding-top: 4px;
  color: #667174;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.section h2 {
  font-size: clamp(3rem, 5.3vw, 6.25rem);
  line-height: 0.95;
}

.idea-copy {
  padding-top: 46px;
}

.idea-copy p {
  max-width: 650px;
  color: var(--ink-soft);
}

.idea-copy .large-copy {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.1vw, 2.25rem);
  line-height: 1.32;
}

blockquote {
  position: relative;
  margin: 46px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-style: italic;
  line-height: 1;
}

.product-stage {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  color: var(--white);
  background: #d8d5ca;
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 10, 12, 0.58));
}

.product-stage img {
  width: 100%;
  height: 82svh;
  object-fit: cover;
  object-position: center 47%;
}

.product-caption {
  position: absolute;
  right: max(24px, calc((100vw - 1440px) / 2));
  bottom: clamp(28px, 5vw, 70px);
  left: max(24px, calc((100vw - 1440px) / 2));
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.product-caption .eyebrow {
  flex: 0 0 auto;
  margin: 0;
  color: var(--white);
}

.product-caption > p:last-child {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2.05rem);
  line-height: 1.25;
}

.world {
  grid-template-rows: auto auto;
}

.world-lead {
  align-self: end;
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.4;
}

.world-grid {
  grid-column: 2 / -1;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.world-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255, 255, 255, 0.28);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.world-card-large {
  grid-row: span 2;
}

.card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #dddcd4;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.world-card:hover .card-image img {
  transform: scale(1.025);
}

.refill-image {
  aspect-ratio: 1.45 / 1;
  background: #fff;
}

.refill-image img {
  object-fit: contain;
  object-position: center 44%;
}

.card-copy,
.copy-panel {
  padding: clamp(24px, 3vw, 42px);
}

.card-number {
  display: block;
  margin-bottom: 28px;
  color: #707a7c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.card-copy h3,
.copy-panel h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.card-copy p,
.copy-panel p {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.world-card-copy {
  min-height: 330px;
  background: var(--ink);
}

.world-card-copy .card-number,
.world-card-copy p {
  color: rgba(255, 255, 255, 0.67);
}

.world-card-copy h3 {
  color: var(--white);
}

.world-card-copy .micro-note {
  max-width: 480px;
  margin-top: 42px;
  font-size: 0.79rem;
}

.ready {
  border-top: 1px solid var(--line);
}

.ready-list {
  padding-top: 36px;
}

.ready-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.ready-list span {
  color: #707a7c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ready-list p {
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
}

.partners {
  position: relative;
  padding: clamp(94px, 12vw, 184px) 24px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.partners::before {
  content: "";
  position: absolute;
  top: -22vw;
  right: -18vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(4, 206, 209, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8vw rgba(169, 60, 240, 0.025), inset 0 0 0 17vw rgba(236, 37, 200, 0.018);
}

.partners-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.66);
}

.partners h2 {
  max-width: 930px;
  font-size: clamp(4rem, 8.7vw, 9rem);
  line-height: 0.87;
}

.partners h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 5px;
  margin-top: 50px;
  background: linear-gradient(90deg, var(--aqua), var(--violet), var(--magenta));
}

.partners-lead {
  max-width: 760px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
}

.partner-types {
  margin: 52px 0 66px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-types span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.contact-link {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  text-decoration: none;
  transition: border-color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--aqua);
}

.contact-link > span:first-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.contact-link strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.3vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.contact-arrow {
  font-size: 2.1rem;
  transition: transform 180ms ease;
}

.contact-link:hover .contact-arrow {
  transform: translate(4px, -4px);
}

.site-footer {
  width: var(--page);
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 2fr) 1fr;
  gap: 48px;
  align-items: end;
}

.site-footer p {
  margin: 0;
  color: #657073;
  font-size: 0.7rem;
  line-height: 1.55;
}

.site-footer p:last-child {
  justify-self: end;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 36px, 1440px);
  }

  .site-header {
    padding-right: 18px;
    padding-left: 18px;
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

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

  .hero-copy {
    padding-right: 40px;
  }

  .section {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .section-intro {
    grid-column: 2;
  }

  .idea-copy,
  .world-lead,
  .ready-list {
    grid-column: 2;
    margin-top: 36px;
    padding-top: 0;
  }

  .world-grid {
    grid-column: 2;
    margin-top: 60px;
  }

  .site-footer {
    grid-template-columns: 1fr 2fr;
  }

  .site-footer p:last-child {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 32px, 1440px);
  }

  .site-header {
    padding: 18px 16px;
  }

  .header-cta {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 76svh;
    padding: 132px 16px 72px;
  }

  .hero h1 {
    font-size: clamp(4.15rem, 19vw, 6.2rem);
  }

  .hero h1::after {
    margin-top: 32px;
  }

  .hero-lead {
    margin-top: 28px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 72svh;
  }

  .hero-visual img {
    object-position: 50% center;
  }

  .brand-ribbon {
    padding: 20px 16px;
    gap: 12px;
    font-size: 0.61rem;
    letter-spacing: 0.12em;
  }

  .section {
    padding: 92px 0;
    display: block;
  }

  .section-index {
    margin-bottom: 28px;
  }

  .section h2 {
    font-size: clamp(3.25rem, 14vw, 5rem);
  }

  .idea-copy,
  .world-lead,
  .ready-list {
    margin-top: 42px;
  }

  .product-stage,
  .product-stage img {
    min-height: 68svh;
    height: 68svh;
  }

  .product-stage img {
    object-position: center;
  }

  .product-caption {
    display: block;
  }

  .product-caption > p:last-child {
    margin-top: 14px;
  }

  .world-grid {
    margin-top: 56px;
    display: block;
  }

  .world-card {
    border-right: 1px solid var(--line);
  }

  .refill-image {
    aspect-ratio: 1 / 1;
  }

  .world-card-copy {
    min-height: 0;
  }

  .partners {
    padding-right: 16px;
    padding-left: 16px;
  }

  .partners::before {
    top: -22vw;
    right: -42vw;
    width: 100vw;
    height: 100vw;
  }

  .partners h2 {
    font-size: clamp(4rem, 19vw, 6.25rem);
  }

  .contact-link {
    grid-template-columns: 1fr auto;
  }

  .contact-link > span:first-child {
    grid-column: 1 / -1;
  }

  .contact-link strong {
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding: 34px 0;
    display: block;
  }

  .site-footer p {
    margin-top: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
