:root {
  --bg: #fafafa;
  --fg: #0a0a0a;
  --muted: #737373;
  --border: #e5e5e5;
  --surface: #ffffff;

  /* iOS Theme tokens (used inside phone frame for fidelity) */
  --ios-bg: #f5f4f2;
  --ios-surface: #e8e7e5;
  --ios-text-primary: #1c1b1a;
  --ios-text-secondary: #727170;
  --ios-border: #959392;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Inter",
    "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 96px 0 72px;
}

.hero-logo {
  height: 56px;
  width: auto;
  margin-bottom: 28px;
}

.hero-tagline {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 760px;
}

.hero-tagline .underline,
.step-title .underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* Steps section */
.steps {
  padding: 56px 0 96px;
  position: relative;
  border-top: 1px solid var(--fg);
}

.steps-heading {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: left;
  margin: 0 0 56px;
  color: var(--fg);
}

/* Hidden radio inputs drive the tabs */
.step-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.step-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.step-tab {
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.step-tab:hover {
  border-color: var(--fg);
}

#step-1:checked ~ .step-panels .step-tabs label[for="step-1"],
#step-2:checked ~ .step-panels .step-tabs label[for="step-2"],
#step-3:checked ~ .step-panels .step-tabs label[for="step-3"],
#step-4:checked ~ .step-panels .step-tabs label[for="step-4"] {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}

#step-1:focus-visible ~ .step-panels .step-tabs label[for="step-1"],
#step-2:focus-visible ~ .step-panels .step-tabs label[for="step-2"],
#step-3:focus-visible ~ .step-panels .step-tabs label[for="step-3"],
#step-4:focus-visible ~ .step-panels .step-tabs label[for="step-4"] {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

.step-nav {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.step-nav-btn {
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.step-nav-btn:hover {
  border-color: var(--fg);
}

.step-nav-btn[aria-disabled="true"] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.step-nav-btn svg {
  width: 14px;
  height: 14px;
  display: block;
}

.step-panel {
  display: none;
}

#step-1:checked ~ .step-panels .step-panel-1,
#step-2:checked ~ .step-panels .step-panel-2,
#step-3:checked ~ .step-panels .step-panel-3,
#step-4:checked ~ .step-panels .step-panel-4 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  animation: stepIn 0.4s ease-out;
}

.step-panel .step-visual {
  order: 2;
}

.step-panel .step-text {
  order: 1;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-text .step-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0;
  max-width: 480px;
}

.step-text .step-body {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 440px;
}

/* ===== Phone Frame (matches iOS PhoneMockupFrame: 230x500) ===== */
.phone-frame {
  width: 230px;
  height: 500px;
  background: var(--ios-bg);
  border: 2px solid rgba(0, 0, 0, 0.85);
  border-radius: 38px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  color: var(--ios-text-primary);
}

.phone-status-bar {
  position: relative;
  height: 24px;
  margin-top: 10px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 14px;
  flex-shrink: 0;
}

.phone-notch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 16px;
  background: #000;
  border-radius: 999px;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1;
  color: #000;
}

.phone-status-icons svg {
  display: block;
}

.phone-content {
  flex: 1;
  padding: 12px 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  min-height: 0;
}

.phone-home-indicator {
  width: 80px;
  height: 4px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 999px;
  margin: 0 auto 8px;
  flex-shrink: 0;
}

/* ===== Step 1: Catalog grid (2 cols × 4 rows, 96px tiles) ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 96px);
  gap: 12px;
  justify-content: center;
}

.catalog-tile {
  width: 96px;
  height: 96px;
  background-color: rgba(232, 231, 229, 0.45);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  border: 0.5px solid rgba(149, 147, 146, 0.2);
}

.catalog-placeholder {
  width: 96px;
  height: 96px;
  background: rgba(232, 231, 229, 0.3);
  border-radius: 16px;
  border: 0.5px solid rgba(149, 147, 146, 0.15);
}

.catalog-tile.is-selected {
  position: relative;
  animation: tilePop 2.4s ease-in-out infinite;
}

.catalog-tile.is-selected::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #000;
  border-radius: 50%;
  pointer-events: none;
  animation: ringPulseCatalog 2.4s ease-out infinite;
}

@keyframes tilePop {
  0%,
  35%,
  100% {
    transform: scale(1);
  }
  8% {
    transform: scale(1.08);
  }
}

@keyframes ringPulseCatalog {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  60% {
    transform: scale(1.7);
    opacity: 0;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ===== Step 2: Outfit ideas (detail card + revealing outfit cards) ===== */
.phone-step2 {
  align-items: center;
  gap: 8px;
}

.phone-detail-card {
  width: 188px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: rgba(232, 231, 229, 0.4);
  border-radius: 12px;
}

.phone-detail-thumb {
  width: 84px;
  height: 84px;
  background-color: #fff;
  background-size: 84%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  flex-shrink: 0;
}

.phone-detail-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.phone-bar {
  display: block;
  background: rgba(232, 231, 229, 0.7);
  border-radius: 3px;
}

.phone-bar-88 {
  width: 88px;
  height: 9px;
}
.phone-bar-60 {
  width: 60px;
  height: 9px;
}
.phone-bar-50 {
  width: 50px;
  height: 6px;
  border-radius: 2px;
}

.phone-outfit-card,
.phone-outfit-placeholder {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  border-radius: 10px;
}

.phone-outfit-card {
  background: rgba(232, 231, 229, 0.5);
}

.phone-outfit-placeholder {
  background: rgba(232, 231, 229, 0.3);
}

.phone-outfit-tiles {
  display: flex;
  gap: 4px;
}

.phone-outfit-tile {
  width: 44px;
  height: 44px;
  background-color: #fff;
  background-size: 84%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
}

.phone-outfit-blank {
  width: 44px;
  height: 44px;
  background: rgba(232, 231, 229, 0.55);
  border-radius: 5px;
}

.phone-outfit-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 16px;
}

.phone-handle {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 12px;
  color: var(--ios-text-primary);
  flex: 1;
  line-height: 1;
}

.phone-camera-btn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ios-bg);
  border: 0.5px solid rgba(149, 147, 146, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ios-text-secondary);
  flex-shrink: 0;
}

.phone-camera-btn svg {
  display: block;
}

.phone-save-pill {
  background: #000;
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  line-height: 1;
}

.phone-circle-placeholder {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(232, 231, 229, 0.55);
  flex-shrink: 0;
}

.phone-pill-placeholder {
  width: 36px;
  height: 14px;
  border-radius: 999px;
  background: rgba(232, 231, 229, 0.55);
  flex-shrink: 0;
}

/* Staggered reveal on step 2 */
#step-2:checked ~ .step-panels .step-panel-2 .phone-outfit-card,
#step-2:checked ~ .step-panels .step-panel-2 .phone-outfit-placeholder {
  opacity: 0;
  transform: translateY(10px);
  animation: rowReveal 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

#step-2:checked ~ .step-panels .step-panel-2 .phone-outfit-card-1 {
  animation-delay: 0.35s;
}

#step-2:checked ~ .step-panels .step-panel-2 .phone-outfit-card-2 {
  animation-delay: 0.65s;
}

#step-2:checked ~ .step-panels .step-panel-2 .phone-outfit-card-3 {
  animation-delay: 0.95s;
}

@keyframes rowReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Step 3: Look detail (header + handle + camera + 4 item rows) ===== */
.phone-step3 {
  align-items: stretch;
  width: 100%;
  padding: 12px 15px 0;
  gap: 0;
}

.phone-look-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.phone-back-chevron {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 0.5px solid rgba(149, 147, 146, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ios-text-secondary);
  flex-shrink: 0;
}

.phone-back-chevron svg {
  display: block;
}

.phone-screen-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 12px;
  color: var(--ios-text-primary);
  line-height: 1;
}

.phone-back-spacer {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.phone-look-handle {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 16px;
  color: var(--ios-text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.phone-camera-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(232, 231, 229, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ios-text-secondary);
  align-self: center;
  margin: 0 0 8px;
  flex-shrink: 0;
}

.phone-camera-circle svg {
  display: block;
}

.phone-item-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}

.phone-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-item-thumb {
  width: 64px;
  height: 64px;
  background-color: #fff;
  background-size: 84%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  flex-shrink: 0;
}

.phone-item-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-bar-tiny {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(232, 231, 229, 0.55);
}

.phone-bar-small {
  width: 56px;
  height: 5px;
  border-radius: 2px;
  background: rgba(232, 231, 229, 0.7);
}

.phone-bar-tinier {
  width: 24px;
  height: 5px;
  border-radius: 2px;
  background: rgba(232, 231, 229, 0.7);
}

.phone-style-pill {
  background: #000;
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 8px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  line-height: 1;
}

.phone-swap-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(232, 231, 229, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ios-text-secondary);
  flex-shrink: 0;
}

.phone-swap-icon svg {
  display: block;
}

.phone-swap-icon-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid #000;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

#step-3:checked ~ .step-panels .step-panel-3 .phone-swap-icon-active::after {
  animation: ringPulseSwap 0.85s ease-out 0.9s forwards;
}

@keyframes ringPulseSwap {
  from {
    transform: scale(1);
    opacity: 0.75;
  }
  to {
    transform: scale(5);
    opacity: 0;
  }
}

/* Swap sheet overlay */
.phone-swap-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.phone-swap-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  opacity: 0;
}

.phone-swap-sheet {
  position: relative;
  height: 195px;
  background: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-top: 0.5px solid rgba(149, 147, 146, 0.25);
  border-left: 0.5px solid rgba(149, 147, 146, 0.25);
  border-right: 0.5px solid rgba(149, 147, 146, 0.25);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  z-index: 1;
}

.swap-sheet-handle {
  width: 32px;
  height: 4px;
  background: rgba(149, 147, 146, 0.5);
  border-radius: 999px;
  margin: 0 auto 14px;
  display: block;
}

.swap-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 14px;
  color: var(--ios-text-secondary);
}

.swap-sheet-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 15px;
  color: var(--ios-text-primary);
  line-height: 1;
}

.swap-sheet-header svg {
  display: block;
}

.swap-sheet-options {
  display: flex;
  gap: 10px;
  padding: 0 14px;
  justify-content: center;
}

.swap-option {
  position: relative;
  width: 95px;
  height: 95px;
  background-color: #fff;
  background-size: 84%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  border: 0.5px solid rgba(149, 147, 146, 0.25);
}

.swap-option-active {
  border: 2.5px solid var(--ios-text-primary);
}

.swap-option-active::before {
  content: "";
  position: absolute;
  inset: -2.5px;
  border: 2px solid #000;
  border-radius: 12px;
  pointer-events: none;
  opacity: 0;
}

#step-3:checked ~ .step-panels .step-panel-3 .swap-option-active::before {
  animation: ringPulseOption 0.85s ease-out 2.5s forwards;
}

@keyframes ringPulseOption {
  from {
    transform: scale(1);
    opacity: 0.75;
  }
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}

.swap-check {
  position: absolute;
  top: -5px;
  right: -5px;
  color: var(--ios-text-primary);
}

#step-3:checked ~ .step-panels .step-panel-3 .phone-swap-backdrop {
  animation: backdropFadeIn 0.4s ease-out 1.95s forwards;
}

#step-3:checked ~ .step-panels .step-panel-3 .phone-swap-sheet {
  animation: sheetSlideUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 1.95s forwards;
}

@keyframes backdropFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes sheetSlideUp {
  to {
    transform: translateY(0);
  }
}

/* ===== Step 4: Safari extension on a retailer product page ===== */
.phone-step4 {
  padding: 0;
  position: relative;
  align-items: stretch;
  background: #fff;
}

.retail-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  flex: 1;
  min-height: 0;
}

.retail-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: #000;
}

.retail-logo-bar {
  display: block;
  flex: 1;
  max-width: 78px;
  height: 9px;
  margin: 0 auto;
  background: rgba(232, 231, 229, 0.7);
  border-radius: 2px;
}

.retail-header-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: #000;
}

.retail-header-icons svg {
  display: block;
}

.retail-divider {
  height: 0.5px;
  background: rgba(149, 147, 146, 0.15);
}

.retail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
}

.retail-crumb {
  font-family: "Instrument Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--ios-text-secondary);
}

.retail-crumb-sep {
  font-family: "Instrument Sans", sans-serif;
  font-size: 8px;
  font-weight: 500;
  color: var(--ios-text-secondary);
}

.retail-crumb-bar {
  width: 64px;
  height: 7px;
  background: rgba(232, 231, 229, 0.6);
  border-radius: 2px;
}

.retail-product-image {
  height: 240px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.retail-product-img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 8px 18px;
}

.retail-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  background: #fff;
}

.retail-bar {
  display: block;
  border-radius: 3px;
}

.retail-bar-title-1 {
  width: 120px;
  height: 10px;
  background: rgba(232, 231, 229, 0.7);
}

.retail-bar-title-2 {
  width: 56px;
  height: 7px;
  background: rgba(232, 231, 229, 0.55);
}

.retail-section-divider {
  display: block;
  height: 0.5px;
  background: rgba(149, 147, 146, 0.15);
  margin: 2px 0;
}

.retail-bar-desc-1 {
  width: 150px;
  height: 6px;
  background: rgba(232, 231, 229, 0.5);
}

.retail-bar-desc-2 {
  width: 110px;
  height: 6px;
  background: rgba(232, 231, 229, 0.5);
}

.retail-bar-desc-3 {
  width: 130px;
  height: 6px;
  background: rgba(232, 231, 229, 0.5);
}

/* Floating Weft action button */
.phone-fab {
  position: absolute;
  right: 0;
  bottom: 90px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px 9px 11px;
  background: #000;
  color: #fff;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(24px);
}

.phone-fab-mark {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-fab-mark::after {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background: #fff;
  -webkit-mask: url("/weft-mark.svg") center / contain no-repeat;
  mask: url("/weft-mark.svg") center / contain no-repeat;
}

.phone-fab-text {
  font-family: "Instrument Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}

#step-4:checked ~ .step-panels .step-panel-4 .phone-fab {
  animation: fabSlideIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
}

@keyframes fabSlideIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Footer */
footer {
  background: var(--fg);
  color: #fff;
  padding: 24px 0;
  width: 100%;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

footer a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* Contact page */
.contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px;
  gap: 16px;
}

.contact-logo {
  height: 40px;
  margin-bottom: 24px;
}

.contact-heading {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 44px);
  margin: 0;
  letter-spacing: -0.01em;
}

.contact-email {
  font-size: 18px;
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-email:hover {
  color: var(--muted);
}

.contact-back {
  font-size: 14px;
  color: var(--muted);
  margin-top: 32px;
}

.contact-back:hover {
  color: var(--fg);
}

/* Responsive */
@media (max-width: 720px) {
  .hero {
    padding: 64px 0 48px;
  }
  .steps {
    padding: 24px 0 64px;
  }
  #step-1:checked ~ .step-panels .step-panel-1,
  #step-2:checked ~ .step-panels .step-panel-2,
  #step-3:checked ~ .step-panels .step-panel-3,
  #step-4:checked ~ .step-panels .step-panel-4 {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    text-align: center;
  }
  .step-panel .step-visual,
  .step-panel .step-text {
    order: 0;
  }
  .step-text {
    align-items: center;
  }
  .step-text .step-title,
  .step-text .step-body {
    text-align: center;
  }
  .step-tab {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-tile.is-selected,
  .catalog-tile.is-selected::after,
  .phone-swap-icon-active::after,
  #step-1:checked ~ .step-panels .step-panel-1,
  #step-2:checked ~ .step-panels .step-panel-2,
  #step-3:checked ~ .step-panels .step-panel-3,
  #step-4:checked ~ .step-panels .step-panel-4,
  #step-2:checked ~ .step-panels .step-panel-2 .phone-outfit-card,
  #step-2:checked ~ .step-panels .step-panel-2 .phone-outfit-placeholder,
  #step-3:checked ~ .step-panels .step-panel-3 .phone-swap-backdrop,
  #step-3:checked ~ .step-panels .step-panel-3 .phone-swap-sheet,
  #step-3:checked ~ .step-panels .step-panel-3 .swap-option-active::before,
  #step-4:checked ~ .step-panels .step-panel-4 .phone-fab {
    animation: none !important;
  }
  #step-2:checked ~ .step-panels .step-panel-2 .phone-outfit-card,
  #step-2:checked ~ .step-panels .step-panel-2 .phone-outfit-placeholder,
  #step-4:checked ~ .step-panels .step-panel-4 .phone-fab {
    opacity: 1;
    transform: none;
  }
  #step-3:checked ~ .step-panels .step-panel-3 .phone-swap-backdrop {
    opacity: 1;
  }
  #step-3:checked ~ .step-panels .step-panel-3 .phone-swap-sheet {
    transform: translateY(0);
  }
}
