:root {
  color-scheme: light;
  --paper: #f2f0eb;
  --paper-soft: #f8f6f2;
  --surface: #fffdfa;
  --ink: #151f2e;
  --text: #202426;
  --muted: #66716d;
  --line: #ded8d1;
  --line-strong: #b7b3aa;
  --copper: #c46b44;
  --copper-dark: #93482c;
  --moss: #17795f;
  --blue-gray: #60738a;
  --shadow: 0 1px 2px rgba(21, 31, 46, 0.13), 0 18px 45px rgba(21, 31, 46, 0.12);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  overflow-x: clip;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(76px, 11vh, 124px) clamp(20px, 6vw, 82px) clamp(86px, 11vh, 120px);
  isolation: isolate;
}

.hero::after {
  display: none;
}

.hero-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 28%, rgba(23, 121, 95, 0.13), transparent 28%),
    linear-gradient(115deg, rgba(248, 246, 242, 0.82) 0 34%, rgba(242, 240, 235, 0.38) 60%),
    var(--paper);
}

.mail-field {
  position: absolute;
  inset: -6vh -8vw 0;
  display: grid;
  grid-template-rows: repeat(18, minmax(34px, 1fr));
  gap: 10px;
  opacity: 0.66;
}

.field-row {
  display: grid;
  grid-template-columns: minmax(18px, 0.08fr) minmax(86px, 0.7fr) minmax(140px, 1.6fr) minmax(44px, 0.4fr);
  gap: 18px;
  align-items: center;
  min-height: 34px;
  padding: 9px clamp(22px, 8vw, 120px);
  border-bottom: 1px solid rgba(183, 179, 170, 0.5);
  background: rgba(255, 253, 250, 0.58);
}

.field-row span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(96, 115, 138, 0.2);
}

.field-row span:first-child {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: rgba(196, 107, 68, 0.22);
}

.field-row span:nth-child(2) {
  width: min(84%, 190px);
}

.field-row span:nth-child(3) {
  width: min(92%, 560px);
}

.field-row span:nth-child(4) {
  width: min(74%, 82px);
  justify-self: end;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(100%, 1840px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 560px) minmax(560px, 1fr);
  gap: clamp(34px, 4.5vw, 84px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
  width: 100%;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 253, 250, 0.5);
}

.rolltop-screen {
  width: 100%;
  aspect-ratio: 1431 / 783;
  border: 1px solid rgba(21, 31, 46, 0.17);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screen-shot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(1.32) contrast(1.02);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 7vw, 8.25rem);
  line-height: 0.86;
}

.hero-title-lockup {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: flex-end;
  gap: clamp(14px, 2vw, 24px);
  max-width: 100%;
  white-space: nowrap;
}

.hero-title-mark {
  width: .82em;
  height: auto;
  flex: none;
  display: block;
  transform: translateY(-0.13em);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 4vw, 4.4rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.lede {
  max-width: 510px;
  margin-bottom: 28px;
  color: #354148;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 10px 16px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fffdfa;
}

.button-secondary {
  border-color: rgba(21, 31, 46, 0.18);
  background: rgba(255, 253, 250, 0.7);
  color: var(--ink);
}

.section {
  position: relative;
  z-index: 4;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 82px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.details {
  margin-top: -56px;
  padding-top: clamp(98px, 12vw, 150px);
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -22px 48px rgba(21, 31, 46, 0.14);
}

.details::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -54px;
  height: 58px;
  border-top: 1px solid rgba(222, 216, 209, 0.92);
  border-bottom: 1px solid rgba(183, 179, 170, 0.6);
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(248, 246, 242, 0.98)),
    repeating-linear-gradient(180deg, transparent 0 12px, rgba(222, 216, 209, 0.95) 12px 13px);
  box-shadow: 0 -10px 28px rgba(21, 31, 46, 0.1);
}

.details-copy {
  max-width: 860px;
}

.section-lede {
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 58px);
  color: #46524e;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  line-height: 1.58;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  grid-template-areas:
    "inbox search"
    "inbox matched"
    "inbox message";
  gap: 14px;
  margin: 0 0 clamp(38px, 5vw, 62px);
}

.shot-thumb {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(21, 31, 46, 0.16);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #fffdfa;
  box-shadow: 0 1px 0 rgba(21, 31, 46, 0.05), 0 16px 36px rgba(21, 31, 46, 0.08);
  color: #fffdfa;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.shot-thumb:nth-child(1) {
  grid-area: inbox;
  min-height: 430px;
}

.shot-thumb:nth-child(2) {
  grid-area: search;
}

.shot-thumb:nth-child(3) {
  grid-area: matched;
}

.shot-thumb:nth-child(4) {
  grid-area: message;
}

.shot-thumb:not(:first-child) {
  aspect-ratio: 16 / 7.7;
}

.shot-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left top;
  filter: brightness(1.32) contrast(1.02);
  transition: transform 180ms ease, filter 180ms ease;
}

.shot-thumb span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  border-radius: 7px;
  padding: 7px 10px;
  background: rgba(21, 31, 46, 0.86);
  color: #fffdfa;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
}

.shot-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 250, 0.26);
  pointer-events: none;
}

.shot-thumb:hover img,
.shot-thumb:focus-visible img {
  filter: brightness(1.38) contrast(1.02);
  transform: scale(1.015);
}

.shot-thumb:focus-visible,
.lightbox button:focus-visible {
  outline: 3px solid rgba(196, 107, 68, 0.62);
  outline-offset: 3px;
}

.lightbox {
  width: min(1320px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  border: 0;
  padding: 0;
  background: transparent;
  color: #fffdfa;
}

.lightbox::backdrop {
  background: rgba(21, 31, 46, 0.76);
  backdrop-filter: blur(6px);
}

.lightbox-frame {
  position: relative;
  display: grid;
  place-items: center;
  padding: 52px 58px 28px;
}

.lightbox-figure {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  display: block;
  border: 1px solid rgba(255, 253, 250, 0.28);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  filter: brightness(1.32) contrast(1.02);
  object-fit: contain;
}

.lightbox-figure figcaption {
  color: rgba(255, 253, 250, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.lightbox button {
  border: 1px solid rgba(255, 253, 250, 0.22);
  border-radius: 8px;
  background: rgba(21, 31, 46, 0.82);
  color: #fffdfa;
  font: inherit;
  font-size: 1.4rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  width: 40px;
  height: 40px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 52px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 6px;
}

.lightbox-next {
  right: 6px;
}

.mail-diagram {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(170px, 0.82fr) minmax(62px, 0.24fr) minmax(260px, 1.12fr) minmax(62px, 0.24fr) minmax(190px, 0.82fr);
  gap: 14px;
  align-items: stretch;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 246, 242, 0.82), rgba(255, 253, 250, 0.96)),
    var(--surface);
  box-shadow: 0 1px 0 rgba(21, 31, 46, 0.05);
}

.diagram-node,
.provider-stack,
.home-server {
  min-width: 0;
}

.diagram-node,
.provider-card,
.rolltop-instance {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
}

.diagram-node {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
}

.diagram-node strong,
.rolltop-instance strong,
.provider-card strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.diagram-node > span,
.rolltop-instance > span,
.provider-card > span,
.provider-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.device-pair {
  position: relative;
  height: 118px;
}

.phone-shape {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 48px;
  height: 92px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: #f8f6f2;
  box-shadow: 7px 9px 0 rgba(21, 31, 46, 0.09);
}

.phone-shape::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 6px;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: rgba(21, 31, 46, 0.28);
}

.phone-shape span:first-child {
  position: absolute;
  left: 9px;
  right: 9px;
  top: 24px;
  height: 9px;
  border-radius: 999px;
  background: rgba(196, 107, 68, 0.28);
}

.phone-shape span:last-child {
  position: absolute;
  left: 9px;
  right: 13px;
  top: 42px;
  height: 34px;
  border-radius: 6px;
  background: rgba(96, 115, 138, 0.16);
}

.laptop-shape {
  position: absolute;
  right: 4px;
  bottom: 8px;
  width: min(134px, calc(100% - 42px));
  height: 82px;
  border: 3px solid var(--ink);
  border-bottom-width: 9px;
  border-radius: 8px 8px 5px 5px;
  background: linear-gradient(180deg, #fffdfa, #f8f6f2);
  box-shadow: 8px 9px 0 rgba(21, 31, 46, 0.09);
}

.laptop-shape::after {
  content: "";
  position: absolute;
  left: -13px;
  right: -13px;
  bottom: -16px;
  height: 8px;
  border-radius: 0 0 8px 8px;
  background: var(--ink);
}

.laptop-shape span {
  position: absolute;
  left: 15px;
  height: 8px;
  border-radius: 999px;
  background: rgba(96, 115, 138, 0.2);
}

.laptop-shape span:first-child {
  right: 15px;
  top: 18px;
}

.laptop-shape span:nth-child(2) {
  right: 36px;
  top: 34px;
}

.laptop-shape span:nth-child(3) {
  width: 42px;
  top: 50px;
  background: rgba(196, 107, 68, 0.28);
}

.diagram-link {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.diagram-link::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 2px;
  background: rgba(96, 115, 138, 0.42);
}

.diagram-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 5px);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid rgba(96, 115, 138, 0.64);
}

.diagram-link-out::before {
  background: rgba(196, 107, 68, 0.5);
}

.diagram-link-out::after {
  border-left-color: rgba(196, 107, 68, 0.82);
}

.home-server {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 42px 20px 22px;
  border: 1px solid rgba(23, 121, 95, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(23, 121, 95, 0.08), rgba(23, 121, 95, 0.03)),
    #f8f6f2;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 250, 0.64);
}

.server-label {
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--moss);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rolltop-instance {
  width: min(100%, 260px);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 3px;
  align-items: center;
  padding: 18px;
  box-shadow: var(--shadow);
}

.rolltop-instance img {
  grid-row: span 2;
  width: 44px;
  height: 46px;
}

.provider-stack {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 220px;
}

.provider-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-left: 4px solid var(--copper);
}

.provider-card:first-child {
  border-left-color: var(--blue-gray);
}

.provider-stack p {
  padding: 0 4px;
  font-weight: 700;
}

.product {
  background:
    linear-gradient(90deg, rgba(21, 31, 46, 0.04), transparent 36%),
    var(--paper);
}

.product-copy {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tech-card {
  min-height: 250px;
  display: grid;
  align-content: start;
  border: 1px solid rgba(21, 31, 46, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: #fffdfa;
  box-shadow: 0 1px 0 rgba(21, 31, 46, 0.05);
}

.tech-number {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--moss);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 850;
}

.tech-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.tech-card p,
.setup-copy p,
.principles p {
  color: #46524e;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.62;
}

.setup {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.setup-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.setup-copy p {
  max-width: 520px;
  margin-bottom: 0;
}

.setup-note {
  margin-top: 18px !important;
  border-left: 4px solid var(--copper);
  padding: 12px 14px;
  background: var(--accent-soft);
  color: var(--ink) !important;
  font-size: 0.98rem !important;
}

.setup-note strong {
  color: var(--copper-dark);
}

.command-panel {
  min-width: 0;
  border: 1px solid rgba(21, 31, 46, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.command-head {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 16px;
  border-bottom: 1px solid rgba(255, 253, 250, 0.12);
  background: rgba(255, 253, 250, 0.06);
  color: rgba(255, 253, 250, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.copy-command {
  min-height: 30px;
  border: 1px solid rgba(255, 253, 250, 0.16);
  border-radius: 7px;
  padding: 5px 10px;
  background: rgba(255, 253, 250, 0.08);
  color: #fffdfa;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.copy-command:hover,
.copy-command:focus-visible {
  border-color: rgba(196, 107, 68, 0.8);
}

.command-block {
  margin: 0;
  overflow-x: auto;
  padding: 20px;
  color: #fffdfa;
  font: 0.86rem/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  white-space: pre;
}

.command-block code {
  font: inherit;
}

[data-master-key] {
  color: #f2a37f;
}

.principles {
  background: var(--ink);
  color: #fffdfa;
}

.principles h2,
.principles .eyebrow {
  color: #fffdfa;
}

.principles .eyebrow {
  opacity: 0.72;
}

.closing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.principles p {
  margin-bottom: 0;
  color: rgba(255, 253, 250, 0.78);
}

.principles a {
  color: #fffdfa;
  font-weight: 750;
  text-decoration-color: rgba(196, 107, 68, 0.85);
  text-underline-offset: 3px;
}

@media (min-width: 1180px) and (max-width: 1500px) {
  .hero {
    padding-left: clamp(42px, 5.5vw, 76px);
    padding-right: clamp(24px, 3vw, 44px);
  }

  .hero-layout {
    grid-template-columns: minmax(330px, 440px) minmax(560px, 1fr);
    gap: clamp(28px, 3vw, 48px);
  }

  h1 {
    font-size: clamp(4.2rem, 6.4vw, 6.6rem);
  }
}

@media (max-width: 1179px) {
  .hero {
    min-height: 112svh;
    align-items: start;
    padding: 54px 20px 92px;
  }

  .hero-layout {
    width: min(920px, 100%);
    grid-template-columns: 1fr;
    gap: clamp(34px, 6vw, 58px);
  }

  .hero-copy {
    width: min(640px, 100%);
    justify-self: center;
  }

  .rolltop-screen {
    justify-self: center;
  }
}

@media (max-width: 860px) {
  .hero-layout {
    width: min(720px, 100%);
  }

  h1 {
    font-size: clamp(3.6rem, 14vw, 6rem);
  }

  .hero-copy::before {
    content: "";
    position: absolute;
    inset: -24px -14px -20px;
    z-index: -1;
    background: radial-gradient(circle at 0 0, rgba(255, 253, 250, 0.86), rgba(255, 253, 250, 0.6) 62%, transparent 78%);
  }

  .mail-diagram,
  .tech-grid,
  .setup-layout,
  .closing-layout {
    grid-template-columns: 1fr;
  }

  .screenshot-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: none;
  }

  .shot-thumb:nth-child(n) {
    grid-area: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .lightbox-frame {
    padding: 52px 46px 28px;
  }

  .mail-diagram {
    gap: 10px;
  }

  .diagram-node,
  .home-server,
  .provider-stack {
    min-height: 180px;
  }

  .diagram-link {
    min-height: 58px;
  }

  .diagram-link::before {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .diagram-link::after {
    left: calc(50% - 6px);
    right: auto;
    top: auto;
    bottom: 0;
    border-top: 9px solid rgba(96, 115, 138, 0.64);
    border-right: 6px solid transparent;
    border-bottom: 0;
    border-left: 6px solid transparent;
  }

  .diagram-link-out::after {
    border-top-color: rgba(196, 107, 68, 0.82);
    border-left-color: transparent;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 112svh;
    padding-top: 48px;
  }

  .hero-title-lockup {
    gap: 12px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    flex: 1 1 150px;
  }

  .screenshot-gallery {
    grid-template-columns: 1fr;
  }

  .lightbox {
    width: calc(100vw - 20px);
  }

  .lightbox-frame {
    padding: 52px 0 68px;
  }

  .lightbox-figure img {
    max-height: calc(100vh - 180px);
  }

  .lightbox-nav {
    top: auto;
    bottom: 8px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 48px);
  }

  .lightbox-next {
    right: calc(50% - 48px);
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 480px) {
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .mail-field {
    transform: none !important;
  }
}
