@font-face {
  font-family: "Cardo Era";
  src: url("/fonts/cardo-regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cardo Era";
  src: url("/fonts/cardo-italic.ttf") format("truetype");
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Familjen Era";
  src: url("/fonts/familjen-grotesk.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --field-high: #331925;
  --field: #1e0d15;
  --field-low: #150911;
  --ink: #efe2d5;
  --rose: #d98a94;
  --rose-dark: #9e5867;
  --ochre: #c99a5b;
  --indigo: #5f6fa0;
  --undyed: #d8cbb4;
  --mulberry: #b06a9a;
  --muted: #a99ba0;
  --gutter: clamp(20px, 4.4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  background: #080305;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--field-low);
  font-family: "Familjen Era", ui-sans-serif, system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--field-low);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-160%);
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: calc(25px + env(safe-area-inset-top)) var(--gutter) 20px;
}

.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  color: var(--undyed);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding-block: 8px;
}

.brand::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 8px;
  border: 2px solid var(--rose-dark);
  transform: rotate(45deg);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.site-header nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  padding: 8px 2px;
  transition: color 160ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--ink);
}

.site-header .nav-waitlist {
  color: var(--ink);
  font-weight: 600;
}

.studio {
  position: relative;
  isolation: isolate;
  min-height: max(100svh, 940px);
  padding: clamp(116px, 12vh, 144px) var(--gutter) 58px;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(51, 25, 37, 0.86) 0%, rgba(30, 13, 21, 0.94) 47%, rgba(21, 9, 17, 0.99) 76%),
    var(--field);
}

.studio::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background-image: repeating-linear-gradient(90deg, transparent 0 21px, rgba(239, 226, 213, 0.033) 22px, transparent 23px);
}

.studio::after {
  content: "";
  position: absolute;
  top: -8%;
  left: 12%;
  z-index: -4;
  width: 42%;
  height: 76%;
  background: linear-gradient(126deg, rgba(239, 226, 213, 0.13), rgba(239, 226, 213, 0) 66%);
  clip-path: polygon(0 0, 43% 0, 100% 100%, 64% 100%);
}

.studio-heading {
  position: relative;
  z-index: 8;
  width: min(760px, 63vw);
  margin-left: clamp(8px, 4vw, 78px);
}

.studio-heading h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Cardo Era", Georgia, serif;
  font-size: clamp(64px, 8.5vw, 132px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.studio-heading p {
  max-width: 550px;
  margin: 24px 0 0 clamp(6px, 6vw, 104px);
  color: var(--muted);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.55;
}

.note-tool {
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: minmax(210px, 0.58fr) minmax(390px, 1.2fr);
  gap: clamp(24px, 4vw, 68px);
  width: min(970px, 76vw);
  margin: 72px 0 0 clamp(0px, 2.4vw, 42px);
}

.prompt-fields {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 17px 0 0;
  border: 0;
}

.prompt-fields legend {
  margin-bottom: 26px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 600;
}

.prompt-fields label,
.note-output > label,
.waitlist-form > label,
.referral-result label {
  color: var(--muted);
  font-size: 12px;
}

.prompt-fields input {
  width: 100%;
  min-height: 43px;
  margin-bottom: 17px;
  padding: 4px 2px 9px;
  border: 0;
  border-bottom: 2px solid rgba(217, 138, 148, 0.34);
  border-radius: 0 0 2px 2px;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-family: "Cardo Era", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.prompt-fields input::placeholder {
  color: rgba(169, 155, 160, 0.58);
}

.prompt-fields input:focus {
  border-bottom-color: var(--rose);
  background: rgba(239, 226, 213, 0.025);
}

.note-output {
  position: relative;
  min-height: 312px;
  padding: clamp(34px, 4.6vw, 68px) clamp(54px, 6vw, 94px) 36px clamp(34px, 4.8vw, 72px);
  color: var(--field-low);
  background: #c47d89;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 7%, calc(100% - 18px) 14%, 100% 21%, calc(100% - 18px) 28%, 100% 35%, calc(100% - 18px) 42%, 100% 49%, calc(100% - 18px) 56%, 100% 63%, calc(100% - 18px) 70%, 100% 77%, calc(100% - 18px) 84%, 100% 91%, calc(100% - 18px) 100%, 0 100%);
}

.note-output::before {
  content: "";
  position: absolute;
  inset: 0 18px 0 0;
  pointer-events: none;
  opacity: 0.15;
  background: repeating-linear-gradient(0deg, rgba(69, 20, 38, 0.24) 0 1px, transparent 1px 4px);
}

.note-output > label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 20px;
  color: #3f1725;
  font-weight: 700;
}

.note-output textarea {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 144px;
  resize: vertical;
  padding: 0;
  border: 0;
  outline: 0;
  color: #2b111a;
  background: transparent;
  font-family: "Cardo Era", Georgia, serif;
  font-size: clamp(24px, 2.5vw, 37px);
  font-style: italic;
  line-height: 1.18;
  letter-spacing: -0.018em;
}

.note-output textarea:focus-visible {
  outline: 2px solid #5b2e3b;
  outline-offset: 8px;
}

.note-output p {
  position: relative;
  z-index: 1;
  margin: 17px 0 0;
  color: #3f1725;
  font-size: 12px;
  line-height: 1.4;
}

.tool-actions {
  grid-column: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: -50px;
  padding: 0 clamp(54px, 6vw, 94px) 0 clamp(34px, 4.8vw, 72px);
  transform: translateY(74px);
}

.tool-actions button,
.waitlist-row button,
.referral-row button,
.honest-price a {
  min-height: 48px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.weave-action {
  padding: 13px 28px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 7px 50%);
  color: var(--field-low);
  background: var(--ink);
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease;
}

.weave-action:hover,
.weave-action:focus-visible {
  color: var(--ink);
  background: var(--rose-dark);
}

.quiet-action {
  padding: 10px 0;
  color: var(--muted);
  background: transparent;
  transition: color 160ms ease;
}

.quiet-action:hover,
.quiet-action:focus-visible {
  color: var(--ink);
}

.tool-status {
  grid-column: 2;
  min-height: 24px;
  margin: 38px 0 0;
  padding-left: clamp(34px, 4.8vw, 72px);
  color: var(--muted);
  font-size: 13px;
}

.phone-stage {
  position: absolute;
  top: clamp(195px, 19vh, 260px);
  right: clamp(-176px, -7vw, -66px);
  z-index: 5;
  width: min(44vw, 660px);
  height: 640px;
  pointer-events: none;
}

.phone {
  position: absolute;
  width: clamp(175px, 16vw, 246px);
  margin: 0;
  padding: 5px;
  border-radius: 34px;
  background: #0d090b;
  box-shadow: 0 17px 18px rgba(4, 0, 2, 0.32), inset 0 1px rgba(239, 226, 213, 0.15);
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 18px;
  border-radius: 0 0 11px 11px;
  background: #080608;
  transform: translateX(-50%);
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 29px;
}

.phone-welcome {
  top: 92px;
  left: 0;
  z-index: 1;
  transform: rotate(-6deg);
}

.phone-moment {
  top: 0;
  left: 29%;
  z-index: 3;
  transform: rotate(1.5deg);
}

.phone-home {
  top: 105px;
  right: 0;
  z-index: 2;
  transform: rotate(7deg);
}

.ambient-thread {
  position: absolute;
  left: -8%;
  z-index: 6;
  width: 122%;
  height: 14px;
  border-radius: 99px;
  background-size: 22px 100%;
  transform-origin: center;
  animation: thread-travel 18s linear infinite;
}

.ambient-thread::after {
  content: "";
  position: absolute;
  inset: 2px 0 auto;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.19);
}

.ambient-thread-one {
  top: 43%;
  background-color: var(--rose);
  background-image: repeating-linear-gradient(112deg, rgba(78, 29, 43, 0.17) 0 2px, transparent 2px 8px);
  transform: rotate(-4deg);
}

.ambient-thread-two {
  top: 48%;
  z-index: 4;
  background-color: var(--ochre);
  background-image: repeating-linear-gradient(112deg, rgba(72, 46, 20, 0.18) 0 2px, transparent 2px 8px);
  transform: rotate(-3deg);
  animation-duration: 21s;
}

.ambient-thread-three {
  top: 53%;
  background-color: var(--indigo);
  background-image: repeating-linear-gradient(112deg, rgba(25, 29, 58, 0.2) 0 2px, transparent 2px 8px);
  transform: rotate(-2deg);
  animation-duration: 24s;
}

.ambient-thread-four {
  top: 58%;
  z-index: 4;
  background-color: var(--undyed);
  background-image: repeating-linear-gradient(112deg, rgba(72, 61, 47, 0.18) 0 2px, transparent 2px 8px);
  transform: rotate(-1deg);
  animation-duration: 20s;
}

.ambient-thread-five {
  top: 63%;
  background-color: var(--mulberry);
  background-image: repeating-linear-gradient(112deg, rgba(61, 20, 52, 0.17) 0 2px, transparent 2px 8px);
  animation-duration: 23s;
}

@keyframes thread-travel {
  to { background-position: 220px 0; }
}

.fold-invite {
  position: relative;
  z-index: 11;
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(460px, 1.3fr);
  column-gap: clamp(40px, 8vw, 136px);
  align-items: end;
  width: min(1160px, calc(100vw - (2 * var(--gutter))));
  margin: clamp(126px, 16vh, 180px) auto 0;
  padding: 30px 36px 32px;
  border-radius: 3px;
  background: rgba(10, 3, 7, 0.78);
  box-shadow: 0 9px 14px rgba(5, 0, 3, 0.28);
}

.fold-invite > p {
  align-self: end;
  margin: 0 0 7px;
  color: var(--rose);
  font-size: 13px;
}

.fold-invite h2 {
  grid-column: 1;
  margin: 0;
  font-family: "Cardo Era", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.waitlist-form {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 0;
}

.waitlist-form > label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.waitlist-row,
.referral-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
}

.waitlist-row input,
.referral-row input {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 13px 18px;
  border: 2px solid rgba(216, 203, 180, 0.28);
  border-right: 0;
  border-radius: 2px 0 0 2px;
  outline: 0;
  color: var(--ink);
  background: rgba(30, 13, 21, 0.7);
}

.waitlist-row input:focus,
.referral-row input:focus {
  border-color: var(--rose);
}

.waitlist-row button,
.referral-row button {
  padding: 13px 24px;
  color: var(--field-low);
  background: var(--rose);
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease;
}

.waitlist-row button:hover,
.waitlist-row button:focus-visible,
.referral-row button:hover,
.referral-row button:focus-visible {
  color: var(--ink);
  background: var(--rose-dark);
}

.waitlist-note,
.waitlist-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.waitlist-status {
  min-height: 18px;
  color: var(--undyed);
}

.honey {
  position: absolute !important;
  left: -10000px !important;
}

.referral-result {
  margin-top: 18px;
}

.referral-result[hidden] {
  display: none;
}

.referral-result label {
  display: block;
  margin-bottom: 7px;
}

.inside-era {
  position: relative;
  isolation: isolate;
  padding: clamp(100px, 13vw, 190px) var(--gutter) 120px;
  color: var(--field-low);
  background: #bd7885;
}

.inside-era::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image: repeating-linear-gradient(0deg, transparent 0 4px, rgba(75, 25, 40, 0.18) 5px, transparent 6px);
}

.inside-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(40px, 9vw, 150px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.inside-copy h2 {
  margin: 0;
  font-family: "Cardo Era", Georgia, serif;
  font-size: clamp(50px, 6vw, 88px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.inside-copy p {
  max-width: 530px;
  margin: 0 0 8px;
  color: #3f1725;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.55;
}

.screen-sequence {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 90px);
  max-width: 1100px;
  margin: clamp(80px, 10vw, 130px) auto 0;
}

.screen-sequence::before,
.screen-sequence::after {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  z-index: -1;
  height: 10px;
  border-radius: 99px;
}

.screen-sequence::before {
  top: 23%;
  background: var(--ochre);
  transform: rotate(1.2deg);
}

.screen-sequence::after {
  top: 28%;
  background: var(--indigo);
  transform: rotate(-1deg);
}

.screen-sequence figure {
  margin: 0;
}

.screen-sequence figure:nth-child(2) {
  margin-top: 84px;
}

.screen-frame {
  width: min(100%, 285px);
  margin: 0 auto;
  padding: 5px;
  border-radius: 37px;
  background: #110a0d;
  box-shadow: 0 15px 17px rgba(76, 26, 40, 0.25);
}

.screen-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.screen-sequence figcaption {
  max-width: 270px;
  min-height: 62px;
  margin: 24px auto 0;
  color: #391823;
  font-family: "Cardo Era", Georgia, serif;
  font-size: clamp(19px, 2vw, 25px);
  font-style: italic;
  line-height: 1.28;
  text-align: center;
}

.honest-price {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr 0.7fr auto;
  gap: 30px;
  align-items: center;
  max-width: 1180px;
  margin: 130px auto 0;
  padding: 28px 0;
  border-top: 3px solid rgba(67, 22, 36, 0.24);
  border-bottom: 3px solid rgba(67, 22, 36, 0.24);
}

.honest-price p {
  margin: 0;
  color: #3f1725;
  line-height: 1.4;
}

.honest-price p:first-child,
.honest-price p:nth-child(3) {
  font-family: "Cardo Era", Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

.honest-price strong {
  color: var(--field-low);
}

.honest-price a {
  display: grid;
  place-items: center;
  padding: 13px 24px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 7px 50%);
  color: var(--ink);
  background: var(--field-low);
  font-weight: 700;
  transition: background-color 160ms ease;
}

.honest-price a:hover,
.honest-price a:focus-visible {
  background: #502432;
}

footer {
  position: relative;
  min-height: 390px;
  padding: 68px var(--gutter) 0;
  overflow: hidden;
  background: #0a0307;
}

.footer-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--muted);
}

.footer-copy p {
  margin: 0;
  font-family: "Cardo Era", Georgia, serif;
  font-size: 19px;
  font-style: italic;
}

.footer-copy nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}

.footer-copy a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  padding: 8px 2px;
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  color: var(--ink);
}

.footer-mark {
  position: absolute;
  left: 50%;
  bottom: -0.19em;
  z-index: 1;
  margin: 0;
  color: var(--field-high);
  font-family: "Cardo Era", Georgia, serif;
  font-size: clamp(180px, 34vw, 510px);
  font-style: italic;
  line-height: 0.8;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
  white-space: nowrap;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

@media (max-width: 1160px) {
  .studio {
    min-height: 1160px;
  }

  .studio-heading {
    width: 72vw;
  }

  .note-tool {
    width: 68vw;
    grid-template-columns: minmax(190px, 0.52fr) minmax(340px, 1fr);
  }

  .phone-stage {
    top: 315px;
    right: -220px;
    width: 560px;
  }

  .phone-welcome {
    display: none;
  }

  .phone-moment {
    left: 0;
  }

  .phone-home {
    right: 8%;
  }

  .fold-invite {
    margin-top: 160px;
  }
}

@media (max-width: 860px) {
  .site-header nav a:not(.nav-waitlist) {
    display: none;
  }

  .studio {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 48px;
  }

  .studio-heading {
    width: min(100%, 610px);
    margin-left: 0;
  }

  .studio-heading h1 {
    font-size: clamp(58px, 15vw, 94px);
  }

  .studio-heading p {
    max-width: 500px;
    margin-left: 0;
  }

  .note-tool {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 54px 0 0;
  }

  .prompt-fields {
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    width: min(100%, 640px);
  }

  .prompt-fields legend {
    grid-column: 1 / -1;
  }

  .note-output {
    width: min(100%, 700px);
    min-height: 290px;
  }

  .tool-actions,
  .tool-status {
    grid-column: 1;
  }

  .phone-stage {
    position: relative;
    top: auto;
    right: auto;
    z-index: 5;
    width: 100%;
    height: 540px;
    margin: 108px 0 0;
  }

  .phone {
    width: clamp(170px, 31vw, 230px);
  }

  .phone-welcome {
    display: block;
    left: 5%;
  }

  .phone-moment {
    left: 35%;
  }

  .phone-home {
    right: 2%;
  }

  .ambient-thread-one { top: 55%; }
  .ambient-thread-two { top: 58%; }
  .ambient-thread-three { top: 61%; }
  .ambient-thread-four { top: 64%; }
  .ambient-thread-five { top: 67%; }

  .fold-invite {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 24px;
  }

  .waitlist-form {
    grid-column: 1;
    grid-row: auto;
    margin-top: 26px;
  }

  .inside-copy {
    grid-template-columns: 1fr;
  }

  .inside-copy p {
    margin-left: 12vw;
  }

  .honest-price {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: calc(20px + env(safe-area-inset-top));
  }

  .site-header .nav-waitlist {
    font-size: 12px;
  }

  .studio::after {
    left: 20%;
    width: 90%;
  }

  .studio-heading h1 {
    max-width: 360px;
    font-size: clamp(58px, 19vw, 82px);
    line-height: 0.98;
  }

  .studio-heading p {
    font-size: 15px;
  }

  .prompt-fields {
    grid-template-columns: 1fr;
  }

  .prompt-fields label {
    margin-top: 3px;
  }

  .note-output {
    min-height: 348px;
    padding: 38px 50px 40px 28px;
  }

  .note-output textarea {
    min-height: 198px;
    font-size: clamp(25px, 7.6vw, 32px);
  }

  .tool-actions {
    gap: 8px 18px;
    margin-top: -48px;
    padding: 0 24px;
    transform: translateY(78px);
  }

  .tool-status {
    margin-top: 42px;
    padding-left: 24px;
  }

  .phone-stage {
    height: 470px;
    margin-top: 102px;
  }

  .phone {
    width: 48vw;
    max-width: 210px;
    border-radius: 28px;
  }

  .phone img {
    border-radius: 23px;
  }

  .phone-welcome {
    left: -12%;
  }

  .phone-moment {
    left: 27%;
  }

  .phone-home {
    right: -17%;
  }

  .ambient-thread {
    height: 11px;
  }

  .fold-invite {
    padding: 28px 20px 30px;
  }

  .waitlist-row,
  .referral-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .waitlist-row input,
  .referral-row input {
    border: 2px solid rgba(216, 203, 180, 0.28);
    border-radius: 2px;
  }

  .waitlist-row button,
  .referral-row button {
    min-height: 54px;
  }

  .inside-era {
    padding-top: 100px;
  }

  .inside-copy h2 {
    max-width: 390px;
    font-size: clamp(50px, 16vw, 74px);
  }

  .inside-copy p {
    margin-left: 0;
  }

  .screen-sequence {
    grid-template-columns: 1fr;
    gap: 78px;
  }

  .screen-sequence::before {
    top: 17%;
    left: -35vw;
    right: -35vw;
  }

  .screen-sequence::after {
    top: 18.5%;
    left: -35vw;
    right: -35vw;
  }

  .screen-sequence figure:nth-child(2) {
    margin-top: 0;
  }

  .screen-frame {
    width: min(72vw, 280px);
  }

  .honest-price {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 100px;
  }

  .honest-price a {
    margin-top: 10px;
  }

  footer {
    min-height: 320px;
    padding-top: 48px;
  }

  .footer-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-copy nav {
    justify-content: flex-start;
  }

  .footer-mark {
    font-size: 48vw;
  }
}

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

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