/* ==========================================================================
   reLease waitlist — release-brand v2 polish pass
   Ground is off-white; orange is rationed; type does the work.
   Rhythm: 8px grid, 96px section cadence.
   ========================================================================== */

:root {
  --off-white: #FAF9F7;
  --near-black: #191919;
  --signal-orange: #FF6B35;
  --signal-orange-press: #F05A24;
  --deep-orange: #B34418;
  --sky-mist: #E6F0FA;
  --warm-gray: #55534E;
  --light-gray: #8A8880;
  --line: #E5E3DC;
  --line-strong: #D8D6CE;
  --neutral-fill: #EFEAE2;

  --container: 1200px;
  --gutter: 32px;

  /* Radii system: 14 cards · 12 controls/panels · 9 small · 999 chips */
  --radius-card: 14px;
  --radius-control: 12px;
  --radius-small: 9px;

  --header-h: 80px;
  --overlap: 128px;

  --font-display: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ------------------------------- Reset ---------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--near-black);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p, ul, fieldset {
  margin: 0;
  padding: 0;
}

p {
  max-width: 70ch;
  text-wrap: pretty;
}

h1, h2, h3 {
  text-wrap: balance;
}

ul {
  list-style: none;
}

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

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

a:hover {
  color: var(--deep-orange);
}

:focus-visible {
  outline: 2px solid var(--deep-orange);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ------------------------------ Shared bits ------------------------------ */

/* One icon voice: 24px optical size, 1.7 stroke, near-black. Text leads. */
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--near-black);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accent-rule {
  width: 40px;
  height: 3px;
  background: var(--signal-orange);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--near-black);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.wm-hidden {
  color: var(--signal-orange);
}

.wm-app {
  color: currentColor;
}

/* ------------------------------ Typography -------------------------------
   Satoshi 700/500 carries headings, wordmark, buttons, step and card titles;
   Inter 400/500 carries body, labels, inputs, captions.
   Scale: 64 hero · 40 h2 · 21 h3 · 17 body · 14 caption. */

.hero-heading,
.signup-heading,
.signup-subheading,
.how-heading,
.benefits-heading,
.footer-display,
.founding-spots strong,
.step-num,
.step-body h3,
.benefits-grid h3,
.role-title,
.success-message,
.cta {
  font-family: var(--font-display);
}

/* ------------------------------- Header ---------------------------------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Quiet status chip — hairline pill, no shout. */
.launching-soon {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 16px;
  background: rgba(250, 249, 247, 0.7);
}

/* -------------------------------- Hero ----------------------------------- */

.hero {
  position: relative;
  background: var(--off-white);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  column-gap: 40px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(92vh, 840px);
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: calc(var(--overlap) + 64px);
}

.hero-heading {
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.hero-heading-accent {
  color: var(--signal-orange);
}

.hero-copy .accent-rule {
  margin-top: 32px;
}

.hero-subhead {
  margin-top: 24px;
  max-width: 44ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--warm-gray);
}

.hero-subhead-strong {
  margin-top: 12px;
  font-size: 17px;
  font-weight: 500;
  color: var(--near-black);
}

.hero-icons {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 700px;
}

.hero-icons li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-right: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--warm-gray);
}

.hero-icons li + li {
  border-left: 0.5px solid var(--line);
  padding-left: 20px;
}

/* Photo bleeds to the right edge, feathers into the off-white page, and
   runs down behind the signup card before fading out. */
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -140px;
  width: 50vw;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(250, 249, 247, 0), var(--off-white));
}

/* ---------------------------- Waitlist card ------------------------------ */

/* The page's one boundary-break: the card crosses the hero's bottom edge.
   Trust surface — white, hairline, contained. */
.signup {
  position: relative;
  z-index: 5;
  margin-top: calc(-1 * var(--overlap));
}

.signup-card {
  background: #FFFFFF;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 48px -16px rgba(25, 25, 25, 0.10), 0 2px 8px rgba(25, 25, 25, 0.04);
  padding: 56px;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 24px 72px;
}

.signup-heading {
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.signup-subheading {
  margin-top: 12px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--signal-orange);
}

.signup-intro .accent-rule {
  margin-top: 24px;
}

.signup-benefit {
  margin-top: 24px;
  max-width: 36ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--warm-gray);
}

.founding-spots {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 0.5px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.founding-mark {
  flex: none;
  margin-top: 2px;
}

.founding-spots p {
  line-height: 1.45;
}

.founding-spots strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.founding-sub {
  font-size: 14px;
  color: var(--light-gray);
}

/* Form — one control system: white fill, 1px #D8D6CE hairline, 12px radius,
   2px Deep Orange focus ring. */

.field {
  margin-bottom: 24px;
}

.field label,
.role-fieldset legend {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--near-black);
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  font: inherit;
  font-size: 16px;
  color: var(--near-black);
  background: #FFFFFF;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  transition: border-color 120ms ease;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355534E' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}

.field input::placeholder {
  color: var(--light-gray);
}

.field input:hover,
.field select:hover {
  border-color: var(--light-gray);
}

.field input:focus,
.field select:focus {
  border-color: var(--near-black);
  outline: 2px solid var(--deep-orange);
  outline-offset: 2px;
}

.field input[aria-invalid="true"] {
  border-color: var(--deep-orange);
}

.field-error,
.form-error {
  margin-top: 8px;
  font-size: 13px;
  color: var(--deep-orange);
}

.form-error {
  margin-bottom: 16px;
}

/* Primary CTA — the page's one hero use of Signal Orange as a surface. */
.cta {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: var(--radius-control);
  background: var(--signal-orange);
  color: var(--off-white);
  font: inherit;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background-color 120ms ease, transform 120ms ease;
}

.cta:hover {
  background: var(--signal-orange-press);
}

.cta:active {
  background: var(--deep-orange);
  transform: scale(0.985);
}

.cta:disabled {
  background: var(--line-strong);
  color: #FFFFFF;
  cursor: default;
}

.cta:focus-visible {
  outline: 2px solid var(--deep-orange);
  outline-offset: 3px;
}

/* Small orange text is always Deep Orange — raw orange never below display sizes. */
.free-line {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-orange);
  text-align: center;
}

.privacy-line {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--light-gray);
}

.icon-lock {
  width: 14px;
  height: 14px;
  stroke: var(--light-gray);
  flex: none;
}

.success-panel {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.success-panel[hidden] {
  display: none;
}

.success-message {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 20em;
  line-height: 1.3;
}

/* ---------------------------- How it works ------------------------------- */

.how {
  padding: 96px 0;
}

.how-heading {
  text-align: center;
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.how-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: 48px 72px;
}

.how-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 460px;
  margin-inline: auto;
}

.how-steps li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* Step number in an open hairline frame — echo of the mark. */
.step-num {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: var(--near-black);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
}

.step-body h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  padding-top: 8px;
}

.step-body .accent-rule {
  width: 24px;
  height: 2px;
  margin-top: 12px;
}

.step-body p {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--warm-gray);
}

/* Phone as a product shot: quiet neutral stage, device shadow does the work. */
.how-phone {
  justify-self: center;
  padding: 56px 64px 40px;
  background: var(--neutral-fill);
  border-radius: var(--radius-card);
}

.phone-frame {
  width: 300px;
  height: 620px;
  background: var(--near-black);
  border: 10px solid var(--near-black);
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 48px 72px -40px rgba(25, 25, 25, 0.45), 0 12px 24px -12px rgba(25, 25, 25, 0.18);
}

/* Demo runs at native 390px width, scaled to the frame's 280px interior. */
.phone-frame iframe {
  display: block;
  width: 390px;
  height: 836px;
  border: 0;
  background: var(--off-white);
  transform: scale(0.71795);
  transform-origin: top left;
}

.phone-caption {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: var(--warm-gray);
  max-width: 30ch;
  margin-inline: auto;
}

/* ---------------------------- Benefits band ------------------------------ */

.benefits {
  padding: 96px 0 112px;
  border-top: 0.5px solid var(--line);
}

.benefits-heading {
  text-align: center;
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.benefits-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefits-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}

.benefits-grid li + li {
  border-left: 0.5px solid var(--line);
}

.benefits-grid .icon,
.benefit-mark {
  width: 24px;
  height: 24px;
}

.benefit-mark {
  color: var(--near-black);
}

.benefits-grid h3 {
  margin-top: 20px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.benefits-grid p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--warm-gray);
  max-width: 21em;
}

/* -------------------------------- Footer --------------------------------- */

/* Flat Near Black closing band. The photo layer renders only once
   assets/footer-studio@2x.jpg is exported; until then the surface is flat. */
.site-footer {
  position: relative;
  background-color: var(--near-black);
  background-image:
    linear-gradient(rgba(25, 25, 25, 0.6), rgba(25, 25, 25, 0.6)),
    url("../assets/footer-studio@2x.jpg");
  background-size: cover;
  background-position: center;
  color: var(--off-white);
}

.footer-inner {
  padding-top: 96px;
  padding-bottom: 72px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
}

.footer-display {
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.footer-accent {
  color: var(--signal-orange);
}

.footer-functional {
  margin-top: 24px;
  font-size: 15px;
  color: rgba(250, 249, 247, 0.85);
}

.footer-launching {
  margin-top: 4px;
  font-size: 14px;
  color: var(--light-gray);
}

.footer-right {
  text-align: right;
  flex: none;
}

.brand-reversed {
  color: var(--off-white);
  justify-content: flex-end;
}

.footer-entity {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(250, 249, 247, 0.85);
}

.footer-entity-accent {
  color: var(--signal-orange);
}

/* -------------------------------- Motion ---------------------------------
   The page's one load moment: hero copy fades up once. Nothing else enters. */

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy {
  animation: hero-fade-up 640ms cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

/* ------------------------------ Responsive ------------------------------- */

/* ------------------------------ Chip row --------------------------------- */
/* Space-type chips: radio semantics (single choice, keyboard-navigable with
   arrow keys, works with no JS). Selection is monochrome — orange stays
   rationed to the one CTA per surface. */

.chip-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
}

.chip-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  position: relative;
  display: inline-flex;
}

.chip input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.chip span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #FFFFFF;
  font-size: 15px;
  color: var(--warm-gray);
  transition: border-color 120ms ease, background-color 120ms ease, color 120ms ease;
}

.chip input:hover + span {
  border-color: var(--near-black);
}

.chip input:focus-visible + span {
  outline: 2px solid var(--deep-orange);
  outline-offset: 2px;
}

.chip input:checked + span {
  background: var(--near-black);
  border-color: var(--near-black);
  color: var(--off-white);
}

/* The "Other" chip's revealed free-text input. Hidden until that chip is
   picked; picking any other chip hides it and clears it (js/app.js), so
   space_type and space_type_other can never disagree. */
.chip-other {
  margin-top: 16px;
}

.chip-other[hidden] {
  display: none;
}

.chip-other-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-gray);
}

.chip-other input {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: #FFFFFF;
  font: inherit;
  font-size: 16px;
  color: var(--near-black);
}

.chip-other input:hover {
  border-color: var(--near-black);
}

.chip-other input:focus-visible {
  outline: 2px solid var(--deep-orange);
  outline-offset: 2px;
}

/* ---------------------------- Owners door -------------------------------- */
/* The second door, branded reVenue. Sky Mist grounds it — non-transactional
   surface, so the atmospheric core color is allowed here; the form card on
   top stays white (trust surface). */

.owners {
  background: var(--sky-mist);
  padding: 96px 0;
}

.owners-inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 24px 72px;
  align-items: start;
}

.owners-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--near-black);
}

.owners-eyebrow .wordmark {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.owners-heading {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.owners-copy .accent-rule {
  margin-top: 24px;
}

.owners-lead {
  margin-top: 24px;
  max-width: 46ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--near-black);
}

.owners-points {
  margin-top: 40px;
  display: grid;
  gap: 32px;
}

.owners-points h3,
.owners-founding h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.owners-points p,
.owners-founding p {
  margin-top: 8px;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--warm-gray);
}

.owners-founding {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 0.5px solid rgba(25, 25, 25, 0.12);
}

.owners-card {
  background: #FFFFFF;
  border: 0.5px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 48px -16px rgba(25, 25, 25, 0.10), 0 2px 8px rgba(25, 25, 25, 0.04);
  padding: 40px;
}

/* ------------------------------ Legal page ------------------------------- */

.legal {
  padding: 96px 0 120px;
}

.legal-inner {
  max-width: 720px;
}

.legal-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.legal-updated {
  margin-top: 24px;
  font-size: 14px;
  color: var(--light-gray);
}

.legal-lead {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
}

.legal h2 {
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.legal p {
  margin-top: 16px;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--warm-gray);
}

.legal-lead {
  color: var(--near-black);
}

.legal-list {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.legal-list li {
  position: relative;
  padding-left: 20px;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--warm-gray);
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-strong);
}

.legal-list strong,
.legal p strong {
  color: var(--near-black);
  font-weight: 500;
}

.legal-back {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 0.5px solid var(--line);
}

@media (max-width: 767px) {
  .legal {
    padding: 64px 0 80px;
  }
}

@media (max-width: 959px) {
  .owners-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .owners {
    padding: 64px 0;
  }
  .owners-card {
    padding: 24px;
  }
}

@media (max-width: 959px) {
  :root {
    --overlap: 48px;
    --header-h: 68px;
  }

  .hero-inner {
    display: block;
  }

  .hero-copy {
    min-height: 0;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 0;
  }

  .hero-photo {
    position: static;
    width: 100%;
    height: 360px;
    margin-top: 56px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-photo::after {
    display: none;
  }

  .hero-photo img {
    object-position: center 60%;
  }

  .signup-card {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 24px 0;
  }

  .signup-form-col {
    margin-top: 16px;
  }

  .how {
    padding: 64px 0;
  }

  .how-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
    justify-items: center;
  }

  .how-steps {
    max-width: 560px;
    justify-self: stretch;
  }

  .how-phone {
    padding: 48px 48px 32px;
  }

  .footer-inner {
    padding-top: 72px;
    padding-bottom: 56px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    text-align: left;
  }

  .brand-reversed {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 20px;
  }

  .hero-icons {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    margin-top: 48px;
  }

  .hero-icons li + li {
    border-left: 0;
    padding-left: 0;
  }

  .benefits {
    padding: 64px 0 72px;
  }

  .benefits-grid {
    margin-top: 48px;
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .benefits-grid li {
    padding: 0 16px;
  }

  .benefits-grid li:nth-child(even) {
    border-left: 0.5px solid var(--line);
  }

  .benefits-grid li + li {
    border-left: 0;
  }

  .benefits-grid li:nth-child(2) {
    border-left: 0.5px solid var(--line);
  }
}

@media (max-width: 479px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .benefits-grid li:nth-child(even),
  .benefits-grid li:nth-child(2) {
    border-left: 0;
  }

  .benefits-grid p {
    max-width: 26ch;
  }

  .hero-photo {
    height: 300px;
  }

  .signup-card {
    padding: 32px 24px;
  }

  .how-phone {
    padding: 40px 24px 28px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
