:root {
  --red: #f51d0d;
  --black: #050505;
  --ink: #171717;
  --muted: #6e6e73;
  --steel: #4f6c72;
  --line: #d7d7dc;
  --soft: #f5f5f7;
  --white: #ffffff;
  --cyan: #2fb8dc;
  --font-main: Objektiv, "Helvetica Neue", Helvetica, Arial, "Noto Sans TC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--black);
  font-family: var(--font-main);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 40px;
  background: rgba(245, 245, 247, 0.78);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 245, 247, 0.9);
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.text-mark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  color: var(--black);
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.text-mark::before {
  content: "";
  width: 4px;
  height: 22px;
  margin-right: 10px;
  background: var(--red);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(0, 0, 0, 0.72);
}

.site-nav a,
.nav-action {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--black);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.site-nav a.is-active {
  color: var(--black);
}

.site-nav a.is-active::after {
  width: 18px;
}

.nav-action {
  justify-self: end;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: clamp(820px, 100vh, 960px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 118px 40px 86px;
  isolation: isolate;
  background: var(--soft);
}

.hero-media,
.hero-scrim,
.hero-frame {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image:
    linear-gradient(180deg, rgba(246, 246, 247, 0.08), rgba(246, 246, 247, 0.2)),
    url("assets/web/hero-banner-v5.png");
  background-size: cover, 100% auto;
  background-repeat: no-repeat;
  background-position: center, center 36px;
  opacity: 0.9;
  filter: saturate(92%) contrast(96%) brightness(1.02) blur(0.04px);
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(245, 245, 247, 0.46) 0%, rgba(245, 245, 247, 0.18) 40%, rgba(245, 245, 247, 0.72) 76%, rgba(245, 245, 247, 0.96) 100%),
    radial-gradient(circle at 50% 63%, rgba(255, 255, 255, 0.82) 0%, rgba(245, 245, 247, 0.62) 34%, rgba(245, 245, 247, 0.24) 58%, rgba(245, 245, 247, 0.66) 100%);
}

.hero-frame {
  z-index: -1;
  pointer-events: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-content {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(18px);
}

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-logo {
  display: block;
  width: min(440px, 66vw);
  margin: 0 auto 18px;
  border-radius: 0;
  filter: drop-shadow(0 18px 34px rgba(245, 29, 13, 0.12));
}

.hero h1 {
  margin: 0 auto;
  max-width: 760px;
  font-size: 3.85rem;
  line-height: 0.98;
  font-weight: 900;
  text-transform: none;
  text-wrap: balance;
}

.hero-copy {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.38;
  font-weight: 760;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--black);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:disabled,
.button[aria-disabled="true"] {
  cursor: default;
  opacity: 0.72;
}

.button:disabled:hover,
.button[aria-disabled="true"]:hover {
  transform: none;
}

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

.button.ghost {
  border-color: rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.56);
}

.section {
  padding: 104px 40px;
}

.section-heading,
.respect-copy,
.craft-copy,
.story-lead,
.drop-copy,
.buy-inner {
  max-width: 860px;
}

.section-heading {
  margin: 0 auto 42px;
  text-align: center;
}

.section h2,
.buy-section h2 {
  margin: 0;
  font-size: 3.55rem;
  line-height: 1.04;
  font-weight: 950;
  text-wrap: balance;
}

.section p,
.buy-section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.flow-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
}

.tech-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 18px;
  align-items: stretch;
}

.tech-visual {
  position: relative;
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f3f3f4;
}

.tech-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(0, 0, 0, 0.78);
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.spec-grid article,
.craft-grid article,
.campaign-card {
  border-radius: 8px;
}

.spec-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 246, 247, 0.96));
  color: var(--black);
}

.spec-grid article::before {
  content: "";
  width: 44px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--red);
}

.spec-grid span {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 950;
}

.spec-grid h3,
.spec-grid .disclosure-toggle {
  margin: 18px 0 12px;
  min-height: 2.35em;
  font-size: 1.35rem;
  line-height: 1.08;
}

.spec-grid p,
.spec-grid .disclosure-panel {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 720;
}

.disclosure-toggle {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  border: 0 !important;
  border-radius: 0;
  padding: 0;
  background: transparent !important;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 950;
  text-align: left;
  cursor: default;
}

.respect-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
  background: var(--soft);
}

.respect-copy {
  justify-self: end;
}

.respect-principles {
  margin-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.respect-principles article {
  display: grid;
  grid-template-columns: 42px minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.respect-principles span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
}

.respect-principles h3,
.respect-principles .disclosure-toggle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 950;
}

.respect-principles p,
.respect-principles .disclosure-panel {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 720;
}

.respect-panel {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.respect-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.24) 100%);
}

.respect-panel img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: 44% center;
}

.quote-block {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 1;
  width: min(430px, calc(100% - 44px));
  max-width: 430px;
  padding: 20px 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--black);
  backdrop-filter: blur(12px);
}

.quote-block p {
  margin: 0;
  color: var(--black);
  font-size: 1.22rem;
  line-height: 1.16;
  font-weight: 920;
}

.quote-block span {
  display: block;
  margin-top: 12px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.craft-section {
  background: var(--white);
}

.craft-section > .craft-copy {
  margin: 0 auto 36px;
  text-align: center;
}

.craft-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.craft-grid article {
  position: relative;
  min-height: 0;
  padding: 0 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--soft);
}

.craft-grid article::before {
  content: "";
  width: 40px;
  height: 2px;
  margin: 26px 28px 26px;
  background: var(--red);
}

.craft-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #f4f4f5;
}

.craft-card-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.craft-grid article:nth-child(3) .craft-card-visual img {
  object-position: center 42%;
}

.craft-card-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  color: rgba(0, 0, 0, 0.78);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 900;
  text-transform: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.craft-grid span {
  margin: 0 28px 20px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.craft-grid h3,
.craft-grid .disclosure-toggle {
  margin: 0 28px 14px;
  min-height: 2.35em;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.08;
  font-weight: 950;
}

.craft-grid p,
.craft-grid .disclosure-panel {
  margin: 0 28px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 720;
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(64px, 7vw, 104px);
  align-items: start;
  padding-top: 124px;
  padding-bottom: 124px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.story-lead {
  max-width: 500px;
  justify-self: end;
}

.story-section .eyebrow {
  color: var(--red);
}

.story-lead h2 {
  max-width: 500px;
}

.story-lead p {
  max-width: 430px;
  margin-top: 24px;
  font-weight: 680;
}

.story-section p {
  color: rgba(255, 255, 255, 0.72);
}

.story-body {
  position: relative;
  max-width: 640px;
  padding-top: 36px;
  justify-self: start;
}

.story-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--red);
}

.story-body p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.84;
  font-weight: 620;
}

.story-body p + p {
  margin-top: 24px;
}

.story-opening {
  max-width: 620px;
  margin-bottom: 34px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1.16rem !important;
  line-height: 1.62 !important;
  font-weight: 780 !important;
}

.story-opening + p {
  margin-top: 0;
}

.story-manifesto {
  margin-top: 38px;
}

.story-manifesto p {
  color: rgba(255, 255, 255, 0.82);
}

.story-manifesto p + p {
  margin-top: 10px;
}

.story-line {
  max-width: 520px;
  margin-top: 40px !important;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white) !important;
  font-size: clamp(2rem, 3vw, 3rem) !important;
  line-height: 0.98 !important;
  font-weight: 950 !important;
  letter-spacing: 0;
}

.drop-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(40px, 4.6vw, 72px);
  align-items: center;
  background: var(--soft);
}

.drop-visual {
  position: relative;
  min-height: 528px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.drop-visual img {
  width: 100%;
  height: 100%;
  min-height: 528px;
  object-fit: cover;
}

.drop-beauty img {
  object-position: center 54%;
}

.drop-copy .eyebrow {
  color: var(--red);
}

.drop-lede {
  margin-bottom: 0;
}

.drop-note {
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 900;
}

.drop-note span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 820;
}

.drop-inside {
  margin: 34px 0 0;
  color: var(--black) !important;
  font-size: 0.82rem !important;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.drop-list {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.drop-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 760;
}

.drop-list span {
  display: inline-block;
  min-width: 86px;
  color: var(--black);
  font-weight: 950;
}

.drop-cta {
  margin-top: 30px;
}

.campaign-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
}

.campaign-card {
  position: relative;
  height: clamp(240px, 16vw, 310px);
  min-height: 0;
  padding: clamp(22px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
}

.campaign-card::before {
  content: attr(data-index);
  position: absolute;
  top: 28px;
  left: 30px;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
  opacity: 0.72;
}

.campaign-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.campaign-copy {
  position: relative;
  z-index: 1;
  max-width: 92%;
}

.campaign-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.campaign-card h2 {
  margin: 12px 0 0;
  font-size: clamp(1.9rem, 2.1vw, 2.35rem);
  line-height: 1;
}

.campaign-card p {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: clamp(0.92rem, 0.95vw, 1.02rem);
  line-height: 1.48;
  font-weight: 760;
}

.campaign-card.red {
  background: var(--red);
  color: var(--white);
}

.campaign-card.red::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0)) 30px 72px / 132px 2px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)) 30px 92px / 92px 2px no-repeat,
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.34) 0 1px, transparent 1px 16px);
}

.campaign-card.red span,
.campaign-card.red p,
.campaign-card.steel span,
.campaign-card.steel p {
  color: rgba(255, 255, 255, 0.78);
}

.campaign-card.steel {
  background: var(--steel);
  color: var(--white);
}

.campaign-card.steel::after {
  background:
    radial-gradient(circle at 30px 30px, rgba(255, 255, 255, 0.78) 0 4px, transparent 5px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0)) 30px 72px / 128px 2px no-repeat,
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 18px);
}

.image-card {
  padding: 0;
  background: var(--soft);
}

.image-card::before,
.image-card::after {
  display: none;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.buy-section {
  padding: 118px 40px;
  background: var(--black);
  color: var(--white);
}

.buy-inner {
  margin: 0 auto;
  text-align: center;
}

.buy-inner .eyebrow {
  color: var(--red);
}

.buy-inner p {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 760;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 40px;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.site-footer strong {
  flex: 0 0 auto;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0;
  text-align: right;
  text-transform: none;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.footer-social,
.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.footer-social {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  color: rgba(255, 255, 255, 0.58);
}

.footer-link-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-social a,
.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-link-button:hover {
  color: var(--white);
}

.footer-social a:hover,
.footer-links a:hover {
  color: var(--white);
}

.privacy-modal[hidden] {
  display: none;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
}

.privacy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(14px);
}

.privacy-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(820px, calc(100vh - 56px));
  overflow: hidden;
  border-radius: 12px;
  background: rgba(250, 250, 250, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  color: var(--ink);
}

.privacy-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-heading {
  padding: 40px 48px 24px;
  border-bottom: 1px solid var(--line);
}

.privacy-heading .eyebrow {
  margin: 0 0 10px;
  color: var(--red);
}

.privacy-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 950;
}

.privacy-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
}

.privacy-content {
  max-height: calc(min(820px, 100vh - 56px) - 178px);
  overflow-y: auto;
  padding: 30px 48px 44px;
}

.privacy-content h3 {
  margin: 34px 0 12px;
  color: var(--black);
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 950;
}

.privacy-content h3:first-child {
  margin-top: 0;
}

.privacy-content p,
.privacy-content li {
  color: rgba(0, 0, 0, 0.68);
  font-size: 0.96rem;
  line-height: 1.68;
}

.privacy-content p {
  margin: 0 0 14px;
}

.privacy-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.privacy-content a {
  color: var(--red);
  font-weight: 850;
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

body.privacy-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 120px 1fr;
    padding-inline: 24px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: clamp(780px, 96vh, 900px);
    padding-inline: 24px;
    padding-bottom: 74px;
  }

  .hero-media {
    background-size: cover, auto calc(100% - 118px);
    background-position: center, 30% 72px;
  }

  .hero-logo {
    width: min(400px, 68vw);
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .tech-layout,
  .respect-section,
  .story-section,
  .drop-section,
  .campaign-section {
    grid-template-columns: 1fr;
  }

  .campaign-card {
    height: auto;
    min-height: 250px;
  }

  .respect-copy,
  .story-lead {
    justify-self: start;
  }

  .story-section {
    gap: 34px;
  }

  .story-lead,
  .story-lead h2,
  .story-body {
    max-width: 680px;
  }

  .story-body {
    padding-top: 28px;
  }

  .story-opening {
    max-width: 620px;
  }

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

@media (max-width: 640px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand action"
      "nav nav";
    align-items: center;
    padding: 10px 16px 8px;
    gap: 8px 12px;
  }

  .text-mark {
    grid-area: brand;
    min-height: 30px;
    font-size: 0.92rem;
  }

  .site-nav {
    grid-area: nav;
    justify-self: stretch;
    display: flex;
    gap: 8px;
    padding: 2px 0 3px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: rgba(0, 0, 0, 0.74);
    font-size: 0.7rem;
    scroll-snap-align: start;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.is-active {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(255, 27, 11, 0.16);
  }

  .nav-action {
    grid-area: action;
    display: inline-flex;
    min-height: 30px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 92vh;
    align-items: end;
    padding: 112px 16px 38px;
  }

  .hero-media {
    background-size: cover, auto 74vh;
    background-position: center, 23% 68px;
    opacity: 0.84;
    filter: saturate(96%) contrast(98%) brightness(1.02) blur(0.02px);
    transform-origin: 24% 28%;
  }

  .hero-content {
    text-align: center;
    transform: none;
  }

  .kicker {
    max-width: 310px;
    margin-inline: auto;
    line-height: 1.35;
  }

  .hero-logo {
    width: min(292px, 78vw);
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    max-width: 350px;
    margin-inline: auto;
    font-size: 2.08rem;
    line-height: 1;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 20px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    min-width: 124px;
    min-height: 40px;
    padding-inline: 18px;
    font-size: 0.8rem;
  }

  .section,
  .buy-section {
    padding: 58px 16px;
  }

  .section h2,
  .buy-section h2 {
    font-size: 2.24rem;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading > p:not(.eyebrow),
  .respect-copy > p,
  .drop-lede,
  .drop-note {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .story-section {
    padding-top: 72px;
    padding-bottom: 72px;
    gap: 24px;
  }

  .story-lead p {
    margin-top: 16px;
    line-height: 1.62;
  }

  .story-body p {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .story-body p + p {
    margin-top: 20px;
  }

  .story-opening {
    margin-bottom: 28px !important;
    font-size: 1.02rem !important;
    line-height: 1.66 !important;
  }

  .story-manifesto {
    margin-top: 34px;
    padding-top: 4px;
  }

  .story-manifesto p + p {
    margin-top: 10px;
  }

  .story-line {
    margin-top: 36px !important;
    padding-top: 24px;
    max-width: 320px;
    font-size: clamp(1.82rem, 10vw, 2.45rem) !important;
  }

  .drop-inside {
    margin-top: 26px;
  }

  .drop-list {
    margin-top: 12px;
    border-top-color: rgba(0, 0, 0, 0.1);
  }

  .drop-list li {
    display: grid;
    grid-template-columns: minmax(72px, 0.34fr) minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
    padding: 13px 0;
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .drop-list span {
    min-width: 0;
    font-size: 0.88rem;
  }

  .drop-cta {
    margin-top: 24px;
  }

  .tech-visual,
  .respect-panel,
  .respect-panel img,
  .drop-visual,
  .drop-visual img {
    min-height: 340px;
  }

  .tech-visual img {
    object-position: 54% center;
  }

  .drop-visual img {
    object-position: 48% center;
  }

  .respect-panel {
    order: -1;
  }

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

  .spec-grid article,
  .craft-grid article {
    min-height: 0;
  }

  .spec-grid article {
    padding: 22px;
  }

  .spec-grid article::before {
    margin-bottom: 16px;
  }

  .mobile-disclosure .disclosure-toggle {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
  }

  .mobile-disclosure .disclosure-toggle::after {
    content: "+";
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: var(--red);
    font-size: 1rem;
    line-height: 1;
  }

  .mobile-disclosure.is-open .disclosure-toggle::after {
    content: "-";
  }

  .mobile-disclosure .disclosure-panel {
    display: none;
  }

  .mobile-disclosure.is-open .disclosure-panel {
    display: block;
  }

  .spec-grid .disclosure-toggle {
    min-height: 0;
    margin: 14px 0 0;
    font-size: 1.12rem;
    line-height: 1.12;
  }

  .spec-grid .disclosure-panel {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.54;
  }

  .craft-grid article {
    padding-bottom: 0;
  }

  .craft-grid article::before {
    margin: 22px 22px 22px;
  }

  .craft-grid span {
    margin: 0 22px 16px;
  }

  .craft-grid .disclosure-toggle {
    width: calc(100% - 44px);
    min-height: 0;
    margin: 0 22px 22px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.14;
  }

  .craft-grid .disclosure-toggle::after {
    margin-top: -4px;
    background: rgba(255, 27, 11, 0.09);
  }

  .craft-grid .disclosure-panel {
    margin: -8px 22px 24px;
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .respect-principles article {
    grid-template-columns: 34px 1fr;
    gap: 8px 14px;
    align-items: start;
  }

  .respect-principles .disclosure-toggle {
    font-size: 0.98rem;
    line-height: 1.22;
  }

  .respect-principles p,
  .respect-principles .disclosure-panel {
    grid-column: 2;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .campaign-card {
    min-height: 238px;
    padding: 26px;
  }

  .campaign-card::before {
    top: 24px;
    left: 26px;
  }

  .campaign-card h2 {
    font-size: 2.05rem;
  }

  .quote-block {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 26px 16px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .footer-brand span {
    max-width: 280px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.68);
    text-transform: none;
  }

  .site-footer small {
    text-align: left;
  }

  .footer-legal {
    width: 100%;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-social > span {
    display: none;
  }

  .footer-social a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
  }

  .footer-links {
    gap: 10px;
    color: rgba(255, 255, 255, 0.62);
  }

  .footer-links > span {
    color: rgba(255, 255, 255, 0.22);
  }

  .privacy-modal {
    padding: 14px;
  }

  .privacy-dialog {
    max-height: calc(100vh - 28px);
    border-radius: 10px;
  }

  .privacy-heading {
    padding: 34px 22px 20px;
  }

  .privacy-close {
    top: 12px;
    right: 12px;
  }

  .privacy-content {
    max-height: calc(100vh - 174px);
    padding: 24px 22px 34px;
  }
}

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