:root {
  --ink: #262821;
  --muted: #6f7668;
  --soft: #eef1e8;
  --cream: #fbf7ee;
  --paper: #fffdf7;
  --sage: #596b4d;
  --moss: #344c30;
  --clay: #9a5e35;
  --line: rgba(38, 40, 33, 0.14);
  --shadow: 0 28px 80px rgba(38, 40, 33, 0.2);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: white;
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  overflow: hidden;
}
.launch {
  display: flex;
  justify-content: center;
  padding: 14px 18px;
  background: #e8eee4;
  color: var(--moss);
  font-size: 14px;
  font-weight: 700;
}
.hero {
  min-height: 100dvh;
  position: relative;
  padding: 34px clamp(20px, 7vw, 110px) 70px 0;
  background:
    radial-gradient(
      circle at 79% 5%,
      rgba(255, 236, 185, 0.5),
      transparent 34%
    ),
    linear-gradient(
      115deg,
      rgba(41, 24, 15, 0.9),
      rgba(141, 78, 36, 0.74) 45%,
      rgba(230, 195, 132, 0.36)
    ),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=85")
      center/cover;
}
.nav,
.hero-grid,
.section,
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.brand {
  display: grid;
  gap: 1px;
  font-weight: 950;
  letter-spacing: -0.05em;
  font-size: 30px;
}
.logo-brand {
  display: inline-flex;
  align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  overflow: hidden;
}
.logo-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fffdf7;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.mobile-drawer[aria-hidden="false"] {
  transform: translateX(0);
}
.mobile-drawer-inner {
  padding: 80px 24px 24px;
}
.mobile-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1002;
}
.mobile-drawer-close span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.mobile-drawer-close span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-drawer-close span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover {
  color: var(--moss);
}
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.68fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: end;
  padding-top: clamp(46px, 9vh, 94px);
}
.hero-copy {
  color: white;
  max-width: 650px;
}
.label {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 14px;
  font-weight: 800;
}
h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 4.25vw, 58px);
  line-height: 1.16;
  letter-spacing: -0.055em;
  max-width: 650px;
}
.lead {
  max-width: 650px;
  margin: 0 0 28px;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.22;
}
.form {
  display: flex;
  max-width: 500px;
  padding: 7px;
  border-radius: 999px;
  background: white;
  box-shadow: var(--shadow);
}
.form input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 18px;
  color: var(--ink);
  font: inherit;
  outline: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--moss);
  color: white;
  padding: 15px 24px;
  font: inherit;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease;
}
.button:active {
  transform: translateY(1px) scale(0.99);
}
.metal-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: linear-gradient(
    135deg,
    #182115,
    #5c704f 42%,
    #d7d1bd 52%,
    #31482b 64%,
    #11180f
  );
  box-shadow:
    0 18px 48px rgba(20, 28, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transform: translateZ(0);
}
.metal-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 90deg,
    #f5efe3,
    #6f7f65,
    #fdf9ee,
    #26351f,
    #b8c2ae,
    #fffdf7,
    #506447,
    #f5efe3
  );
  animation: metal-orbit 3.6s linear infinite;
  z-index: -2;
}
.metal-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0) 34%
    ),
    radial-gradient(
      circle at 25% 20%,
      rgba(255, 255, 255, 0.75),
      transparent 21%
    ),
    linear-gradient(135deg, #22311d, #506344 54%, #162112);
  z-index: -1;
}
.metal-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    135deg,
    #24351f,
    #6e815f 42%,
    #eee9d8 52%,
    #3d5735 64%,
    #172113
  );
}
.metal-button:focus-visible {
  outline: 3px solid rgba(255, 253, 247, 0.62);
  outline-offset: 4px;
}
@keyframes metal-orbit {
  to {
    transform: rotate(1turn);
  }
}
@media (prefers-reduced-motion: reduce) {
  .metal-button::before {
    animation: none;
  }
}
.proof {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 750;
}
.device-stage {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.iphone {
  width: min(350px, 86vw);
  border: 10px solid #080908;
  border-radius: 48px;
  background: #080908;
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.38),
    inset 0 0 0 2px #303030;
  transform: rotate(0deg);
}
.screen {
  aspect-ratio: 472 / 1024;
  overflow: hidden;
  border-radius: 36px;
  background: #fffefa;
  color: #30332b;
  position: relative;
}
.hero .screen::after {
  content: "";
  position: absolute;
  left: 10.5%;
  right: 10%;
  top: 69.4%;
  height: 6.4%;
  background: #fffefa;
  pointer-events: none;
}
.phone-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.section {
  padding: 92px clamp(20px, 5vw, 56px);
}
.white-band {
  background: white !important;
  padding: 60px 0;
}
.loop-section {
  padding: 80px 0;
}
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
}
.eyebrow {
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 950;
}
h2 {
  margin: 10px 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}
.mint-highlight {
  color: #f43f5e;
}
.action-highlight {
  color: #f43f5e;
}
.support-section {
  position: relative;
}
.support-heading {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-top: 60px;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}
.support-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px 0;
  overflow: hidden;
  background: white;
  width: 100%;
  white-space: nowrap;
  position: relative;
}
.support-logos::before,
.support-logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
}
.support-logos::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.support-logos::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}
.support-logos-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.support-logos-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scroll 15s linear infinite;
  width: fit-content;
  will-change: transform;
}
.support-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.support-logo:hover {
  opacity: 1;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.actions-showcase {
  max-width: 1180px;
}
.actions-copy {
  max-width: 820px;
  margin-bottom: 34px;
}
.actions-copy p {
  max-width: 690px;
}
.actions-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.08fr;
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
  min-height: 680px;
}
.shop-phone {
  width: min(330px, 86vw);
  justify-self: center;
}
.vendor-panel {
  min-height: 520px;
  border-radius: 46px;
  padding: 28px;
  background: transparent;
  box-shadow: none;
}
.vendor-panel-inner {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.36);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow:
    0 32px 90px rgba(38, 40, 33, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  color: var(--ink);
}
.vendor-head {
  display: grid;
  gap: 10px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(38, 40, 33, 0.12);
}
.vendor-head strong {
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.04em;
}
.vendor-badge {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.vendor-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(38, 40, 33, 0.1);
}
.vendor-row span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(89, 107, 77, 0.14);
  font-size: 12px;
  font-weight: 950;
}
.vendor-row b {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
.vendor-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.vendor-row em {
  color: var(--sage);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}
.loop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.step {
  padding: 24px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}
.step strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}
.trust {
  background: transparent;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-radius: 28px;
  overflow: hidden;
}
.trust-card {
  background: var(--cream);
  padding: 28px;
  min-height: 190px;
}
.trust-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
}
.cta {
  text-align: center;
  padding-bottom: 120px;
}
.cta h2 {
  max-width: 820px;
  margin-inline: auto;
}
.pilot-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(34px, 8vw, 98px);
  align-items: center;
}
.pilot-phone {
  width: min(310px, 84vw);
  justify-self: center;
}
.pilot-copy {
  text-align: left;
  padding-bottom: 0;
}
.pilot-copy h2 {
  margin-inline: 0;
  max-width: 760px;
}
.pilot-ai-response {
  position: absolute;
  left: 7.2%;
  right: 6.2%;
  top: 52.5%;
  min-height: 26.8%;
  background: #f3f1e8;
  color: #171913;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 850;
  font-family: "Arial Rounded MT Bold", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: -0.035em;
  padding: 18px 7px 10px;
  z-index: 4;
}
.pilot-user-question {
  position: absolute;
  left: 7.2%;
  right: 7%;
  top: 37.2%;
  min-height: 14.6%;
  border-radius: 10px;
  background: #fffdf7;
  color: #172033;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 950;
  padding: 16px 14px;
  z-index: 3;
}
.pilot-chat-image .pilot-onboarding-copy {
  position: absolute;
  left: 7.2%;
  right: 5.6%;
  top: 20.2%;
  min-height: 17.4%;
  background: #f3f1e8;
  color: #171913;
  font-size: 14.1px;
  line-height: 1.08;
  font-weight: 850;
  font-family: "Arial Rounded MT Bold", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: -0.035em;
  padding: 13px 7px 8px;
  z-index: 2;
}
.footer {
  background: #22241e;
  color: #f5f0e6;
  padding: 36px 20px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
}
.policy {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 20px 110px;
}
.about-shell {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(150px, 230px) minmax(0, 780px) minmax(
      150px,
      230px
    );
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}
.about-shell .policy {
  margin: 0;
  padding-inline: 0;
}
.about-back-link {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.72);
  color: var(--moss);
  font-size: 24px;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.about-back-link:hover {
  transform: translateX(-3px);
  background: #fffdf7;
}
.about-back-link:active {
  transform: translateX(-3px) scale(0.95);
  background: var(--moss);
  color: white;
}
.about-back-link:focus-visible {
  outline: 3px solid rgba(89, 107, 77, 0.42);
  outline-offset: 4px;
}
@media (max-width: 768px) {
  .about-back-link {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}
.about-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  margin: 0 0 26px;
  box-shadow: 0 24px 80px rgba(52, 76, 48, 0.14);
}
.story-links {
  position: sticky;
  top: 34px;
  padding-top: 128px;
  display: grid;
  gap: 24px;
}
.story-card {
  display: grid;
  gap: 12px;
  color: var(--moss);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}
.story-card:hover {
  transform: translateY(-4px);
}
.story-card:focus-visible {
  outline: 3px solid rgba(89, 107, 77, 0.42);
  outline-offset: 5px;
  border-radius: 26px;
}
.story-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(52, 76, 48, 0.16);
}
.story-left img {
  object-position: center;
}
.story-left img.emma-profile {
  object-position: center 8%;
}
.story-right img.emma-profile {
  object-position: center 8%;
}
.story-right img {
  object-position: center top;
}
.story-card span {
  display: block;
  padding-inline: 4px;
}
.legal-menu {
  align-content: start;
  gap: 10px;
  padding-top: 160px;
}
.legal-menu span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.legal-menu a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: var(--moss);
  font-size: 15px;
  font-weight: 500;
  transition:
    transform 180ms ease,
    color 180ms ease;
}
.legal-menu a:hover {
  transform: translateX(4px);
  color: var(--clay);
}
.legal-panel {
  scroll-margin-top: 34px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.legal-panel:target {
  background: rgba(255, 253, 247, 0.7);
  border-radius: 28px;
  margin-inline: -18px;
  padding-inline: 18px;
  padding-bottom: 18px;
}
.policy h1 {
  color: var(--ink);
  font-size: clamp(42px, 7vw, 78px);
}
.policy h2 {
  font-size: 30px;
  margin-top: 42px;
}
.policy li {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 1040px) {
  .about-shell {
    grid-template-columns: 1fr;
    max-width: 780px;
  }
  .about-shell .policy {
    order: 1;
    padding-top: 56px;
  }
  .story-links {
    position: static;
    order: 2;
    padding-top: 0;
  }
  .story-right {
    order: 3;
  }
  .story-card img {
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hero {
    padding-inline: 20px;
  }
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    order: 1;
  }
  .device-stage {
    order: 2;
  }
  .form {
    flex-direction: column;
    border-radius: 24px;
    gap: 8px;
  }
  .form input {
    min-height: 52px;
  }
  .actions-grid,
  .trust-grid,
  .loop,
  .pilot-grid {
    grid-template-columns: 1fr;
  }
  .vendor-panel {
    min-height: 560px;
    padding: 18px;
  }
  .section {
    padding-block: 70px;
  }
}
.loop-section {
  display: grid;
  gap: 42px;
}
.loop-kicker-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.loop-intro-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  max-width: 340px;
}
.loop-intro-line .lead-in {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--muted);
  font-weight: 650;
}
.loop-section h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 62px);
  max-width: 940px;
  text-wrap: balance;
}
.loop-thesis {
  max-width: 78ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.loop-section .loop {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.loop-section .step {
  min-height: 270px;
}
@media (max-width: 900px) {
  .loop-kicker-row {
    gap: 18px;
  }
  .loop-intro-line {
    padding-top: 0;
    max-width: none;
  }
  .loop-section .loop {
    grid-template-columns: 1fr;
  }
  .loop-section .step {
    min-height: 0;
  }
  .loop-section h2 {
    font-size: clamp(42px, 12vw, 64px);
    white-space: normal;
  }
  .loop-section {
    padding: 60px 20px;
  }
}
.loop-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
  margin: 18px 0 16px;
  filter: saturate(0.92) contrast(0.98);
  transition:
    transform 240ms ease,
    filter 240ms ease,
    box-shadow 240ms ease;
}
.step {
  overflow: hidden;
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}
.step:hover {
  transform: translateY(-4px);
  background: #fffdf7;
  box-shadow: 0 24px 60px rgba(52, 76, 48, 0.12);
}
.step:hover .loop-card-image {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.02);
  box-shadow: 0 18px 46px rgba(38, 40, 33, 0.14);
}
.step p {
  transition: color 220ms ease;
}
.step:hover p {
  color: #4f584b;
}
@media (prefers-reduced-motion: reduce) {
  .step,
  .loop-card-image,
  .step p {
    transition: none;
  }
  .step:hover,
  .step:hover .loop-card-image {
    transform: none;
  }
}

.contact-form{display:grid;gap:18px;margin-top:26px}.contact-form label{display:grid;gap:8px;color:var(--muted);font-size:14px}.contact-form input,.contact-form select,.contact-form textarea{border:1px solid var(--line);border-radius:18px;background:#fffdf7;padding:14px 16px;color:var(--ink);font:inherit}.contact-form textarea{resize:vertical}.contact-page h1{margin-top:18px}
