@font-face {
  font-family: Pretendard;
  src: url("/assets/fonts/pretendard-regular.woff2") format("woff2");
  font-weight: 400 500;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("/assets/fonts/pretendard-bold.woff2") format("woff2");
  font-weight: 600 900;
  font-display: swap;
}
:root {
  color-scheme: light;
  --blue: #3d63f3;
  --ink: #191c24;
  --muted: #697180;
  --line: #e8ebf1;
  --pale: #f0f3ff;
  --shell: 1120px;
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    sans-serif;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.025em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
}
button,
a,
summary {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
button:active,
.button:active,
.store-button:active {
  transform: translateY(1px);
}
h1,
h2,
h3,
p {
  margin: 0;
}
svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.06em;
  white-space: nowrap;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.header-inner nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
  color: #525b69;
}
.header-inner nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.header-inner nav a:hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #2c4ed1;
}
.button svg {
  width: 17px;
  height: 17px;
}
.header-cta {
  min-height: 44px;
  font-size: 13px;
  padding-inline: 18px;
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  padding-block: 76px 80px;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}
.kicker svg {
  width: 18px;
  height: 18px;
}
.hero h1 {
  font-size: clamp(42px, 4.7vw, 62px);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.06em;
}
.hero h1 span {
  display: block;
  color: var(--blue);
}
.hero-lede {
  margin-top: 25px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 420px;
}
.hero-lede span {
  display: block;
}
.store-actions {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.store-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  min-height: 60px;
  min-width: 166px;
  padding: 10px 19px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 13px;
  font-weight: 700;
  line-height: 1.25;
  transition:
    transform 0.18s,
    background 0.18s;
}
.store-button svg {
  width: 23px;
  height: 25px;
  fill: currentColor;
}
.store-button span {
  display: grid;
  gap: 3px;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.store-button small {
  font-size: 10px;
  line-height: 1.4;
  color: #c9cdd5;
  font-weight: 400;
}
.store-button-light {
  background: #fff;
  color: var(--ink);
  border-color: #dfe3eb;
}
.store-button-light small {
  color: var(--muted);
}
.release-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  max-width: 370px;
}
.release-note:target {
  color: var(--blue);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  font-size: 13px;
  color: #596270;
}
.hero-proof svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
}
.hero-visual {
  position: relative;
  isolation: isolate;
  background: #edf1ff;
  border-radius: 36px;
  min-width: 0;
  padding: 32px 32px 0;
  height: 578px;
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 370px;
  height: 370px;
  border: 1px solid #dce3ff;
  border-radius: 50%;
  left: -160px;
  top: 85px;
  z-index: -1;
}
.phone-crop {
  position: relative;
  aspect-ratio: 1026/2190;
  width: 278px;
  margin: 0 0 0 auto;
  border: 6px solid #222632;
  border-radius: 43px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px #2533651a;
}
.phone-crop img {
  position: absolute;
  width: 128.66%;
  max-width: none;
  height: auto;
  left: -14.33%;
  top: -28.58%;
}
.note-card {
  position: absolute;
  left: 20px;
  bottom: 66px;
  max-width: 234px;
  border: 1px solid #e7ebf6;
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 26px #23346b0d;
}
.note-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}
.note-card-label svg {
  width: 17px;
  height: 17px;
}
.note-card p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
.note-card small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
}
.hero-caption {
  display: flex;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-block: 24px;
  color: var(--muted);
  font-size: 14px;
}
.hero-caption strong {
  color: var(--ink);
  font-weight: 700;
}
.hero-caption span:last-child {
  margin-left: auto;
  color: var(--blue);
  font-size: 13px;
}
.section {
  padding-block: 104px;
}
.section-label {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}
.section-heading h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.35;
}
.section-heading > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.section-heading.center {
  text-align: center;
}
.section-heading.center > p {
  max-width: 560px;
  margin-inline: auto;
}
.demo-section {
  background: #f8f9fc;
}
.demo-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  margin-top: 42px;
  align-items: stretch;
}
.experience-card {
  background: #eef1fb;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #6e7689;
}
.product-name {
  margin-top: 24px;
  font-size: 23px;
  font-weight: 700;
}
.experience-text {
  font-size: 19px;
  line-height: 1.85;
  margin-top: 16px;
  color: #414c66;
}
.experience-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.experience-tags span {
  background: #fff;
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 12px;
  color: #526079;
}
.demo-hint {
  margin-top: auto;
  padding-top: 32px;
  color: #6e7689;
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.demo-hint svg {
  width: 18px;
  height: 18px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px 32px;
  box-shadow: 0 4px 12px #1a233503;
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.review-card-top .card-label {
  color: var(--blue);
}
.tone-switch {
  display: flex;
  gap: 2px;
  padding: 4px;
  background: #f3f5f9;
  border-radius: 10px;
}
.tone-switch button {
  min-height: 44px;
  padding: 4px 12px;
  border-radius: 7px;
  background: transparent;
  font-size: 12px;
  white-space: nowrap;
  color: #6e7689;
  transition:
    background 0.15s,
    color 0.15s;
}
.tone-switch button[aria-pressed="true"] {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 1px 4px #18214712;
  font-weight: 700;
}
.review-result {
  padding-block: 22px;
  min-height: 250px;
  font-size: 15px;
  line-height: 1.95;
  color: #3a4250;
  white-space: pre-line;
}
.review-result.is-collapsed {
  max-height: 430px;
  overflow: hidden;
}
.review-expand {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-bottom: 16px;
  border: 0;
  border-top: 1px solid #e8ebf1;
  background: transparent;
  color: #3d63f3;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.review-expand[hidden] {
  display: none;
}
.review-expand:hover {
  background: #f5f7ff;
}
.review-expand:focus-visible {
  outline: 2px solid #3d63f3;
  outline-offset: 3px;
}
.experience-card {
  align-self: start;
}
.review-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  color: var(--muted);
}
.copy-button {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  background: var(--pale);
  color: var(--blue);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}
.copy-button svg {
  width: 15px;
  height: 15px;
}
.demo-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 48px;
}
.step {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.step-number {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
}
.step h3 {
  font-size: 21px;
  margin-top: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 10px;
  max-width: 310px;
}
.screens-section {
  padding-top: 100px;
  overflow: hidden;
}
.screens-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}
.rail-buttons {
  display: flex;
  gap: 8px;
}
.rail-buttons button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  transition: background 0.18s;
}
.rail-buttons button:hover {
  background: var(--pale);
}
.rail-buttons svg {
  width: 18px;
  height: 18px;
}
.screen-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 242px;
  gap: 20px;
  overflow-x: auto;
  padding: 0 max(32px, calc((100vw - var(--shell)) / 2)) 24px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(32px, calc((100vw - var(--shell)) / 2));
  scrollbar-width: thin;
  scrollbar-color: #d8dfef transparent;
  overscroll-behavior-x: contain;
}
.screen-rail figure {
  margin: 0;
  scroll-snap-align: start;
}
.screen-rail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1320/2868;
  border-radius: 20px;
  border: 1px solid #e6e9f2;
}
.screen-rail figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: #535d71;
  font-size: 13px;
}
.screen-rail figcaption span {
  font-size: 11px;
  color: #9199a9;
}
.gallery-note {
  display: none;
}
.plans {
  padding-top: 104px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.plan-card {
  position: relative;
  padding: 29px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.plan-card.featured {
  border: 1.5px solid var(--blue);
  background: #f6f8ff;
}
.plan-name {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.plan-name span {
  font-size: 10px;
  color: var(--blue);
  background: #e8edff;
  border-radius: 5px;
  padding: 3px 7px;
}
.plan-description {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.price {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.price strong {
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: -0.06em;
}
.price span {
  color: var(--muted);
  font-size: 13px;
}
.quota {
  padding-block: 20px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  width: 100%;
  font-size: 14px;
}
.quota strong {
  color: var(--blue);
  font-weight: 700;
}
.plan-card .button {
  width: 100%;
  background: #f3f5f9;
  color: #444f63;
}
.plan-card.featured .button {
  background: var(--blue);
  color: white;
}
.plan-features {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13px;
  color: #687387;
}
.plan-features span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.plan-features svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}
.plan-footnote {
  text-align: center;
  margin-top: 16px;
  color: #747c8c;
  font-size: 11px;
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  border-top: 1px solid var(--line);
}
.faq .section-heading p {
  font-size: 14px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  min-height: 44px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
}
.text-link svg {
  width: 17px;
  height: 17px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 75px;
  padding-block: 17px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
  color: #818a9c;
}
.faq details[open] summary svg {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 14px;
  color: var(--muted);
  padding: 0 26px 23px 0;
  line-height: 1.8;
}
.closing {
  padding-bottom: 80px;
}
.closing-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 52px 56px;
  border-radius: 28px;
  background: var(--blue);
  color: white;
}
.closing h2 {
  font-size: 34px;
  line-height: 1.4;
  letter-spacing: -0.045em;
}
.closing p {
  color: #dce4ff;
  margin-top: 10px;
  font-size: 15px;
}
.closing .button {
  background: #fff;
  color: var(--blue);
  white-space: nowrap;
}
.footer {
  border-top: 1px solid var(--line);
  padding-block: 42px 30px;
}
.footer-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
}
.footer .brand {
  font-size: 18px;
}
.footer .brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.footer-top p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}
.footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12px;
}
.footer nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer a:hover {
  color: var(--blue);
}
.footer-meta {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 30px;
  font-size: 11px;
  color: #788193;
}
.footer-meta p:first-child {
  max-width: 620px;
}
.footer-meta p:last-child {
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .header-inner {
    gap: 24px;
  }
  .hero {
    gap: 32px;
    padding-block: 60px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-visual {
    height: 530px;
    padding: 24px 20px 0;
  }
  .phone-crop {
    width: 248px;
  }
  .note-card {
    left: 12px;
    bottom: 50px;
    max-width: 208px;
    padding: 16px;
  }
  .note-card p {
    font-size: 13px;
  }
  .hero-lede {
    font-size: 16px;
  }
  .store-button {
    min-width: 145px;
    padding: 9px 12px;
  }
  .store-button span {
    font-size: 14px;
  }
  .demo-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .review-card,
  .experience-card {
    padding: 25px;
  }
  .review-card-top {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
  .faq {
    gap: 42px;
  }
  .footer nav {
    gap: 14px;
  }
}
@media (max-width: 760px) {
  .shell {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 68px;
    gap: 16px;
  }
  .brand {
    font-size: 19px;
  }
  .brand img {
    width: 31px;
    height: 31px;
  }
  .header-inner nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 46px 30px;
  }
  .hero-copy {
    text-align: center;
  }
  .kicker {
    justify-content: center;
    margin-bottom: 17px;
    font-size: 12px;
  }
  .hero h1 {
    font-size: clamp(35px, 7.6vw, 50px);
    line-height: 1.28;
    letter-spacing: -0.055em;
  }
  .hero-lede {
    margin: 19px auto 0;
    max-width: 350px;
    font-size: 16px;
    line-height: 1.8;
  }
  .store-actions {
    justify-content: center;
    margin-top: 25px;
  }
  .store-button {
    min-width: 156px;
  }
  .release-note {
    margin: 13px auto 0;
    font-size: 11px;
  }
  .hero-proof {
    justify-content: center;
    margin-top: 18px;
    font-size: 12px;
  }
  .hero-visual {
    width: min(100%, 440px);
    height: 442px;
    justify-self: center;
    padding: 24px 25px 0;
    border-radius: 26px;
  }
  .phone-crop {
    width: 238px;
    border-width: 5px;
    border-radius: 36px;
    margin-right: 6px;
  }
  .note-card {
    left: 18px;
    bottom: 38px;
    max-width: 202px;
    border-radius: 14px;
    padding: 16px;
  }
  .hero-caption {
    justify-content: center;
    padding-block: 20px;
    font-size: 12px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .hero-caption span:last-child {
    margin-left: 0;
  }
  .section {
    padding-block: 72px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .section-heading > p {
    font-size: 15px;
    margin-top: 14px;
  }
  .section-label {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }
  .experience-card {
    padding: 24px;
    border-radius: 20px;
  }
  .product-name {
    margin-top: 14px;
    font-size: 20px;
  }
  .experience-text {
    margin-top: 10px;
    font-size: 17px;
  }
  .experience-tags {
    margin-top: 14px;
  }
  .demo-hint {
    padding-top: 20px;
    font-size: 12px;
  }
  .review-card {
    padding: 24px;
    border-radius: 20px;
  }
  .review-card-top {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .tone-switch button {
    padding-inline: 10px;
    font-size: 11px;
  }
  .review-result {
    font-size: 14px;
    min-height: 265px;
  }
  .review-card-bottom {
    gap: 8px;
  }
  .review-card-bottom > span {
    max-width: 145px;
  }
  .demo-note {
    font-size: 11px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .step {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 12px;
    padding-top: 22px;
  }
  .step-number {
    padding-top: 3px;
  }
  .step h3 {
    margin: 0;
    font-size: 20px;
  }
  .step p {
    grid-column: 2;
    max-width: none;
    font-size: 14px;
    margin-top: 8px;
  }
  .screens-section {
    padding-top: 70px;
  }
  .screens-header {
    gap: 12px;
    margin-bottom: 28px;
  }
  .screens-header h2 {
    font-size: 30px;
  }
  .rail-buttons {
    gap: 6px;
  }
  .screen-rail {
    grid-auto-columns: 230px;
    gap: 14px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }
  .screen-rail img {
    border-radius: 18px;
  }
  .gallery-note {
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    margin-top: 5px;
  }
  .plans {
    padding-top: 72px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }
  .plan-card {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 24px;
    column-gap: 18px;
    border-radius: 18px;
  }
  .plan-name {
    font-size: 16px;
    gap: 14px;
    justify-content: start;
  }
  .plan-description {
    grid-column: 1;
    font-size: 12px;
  }
  .price {
    grid-column: 2;
    grid-row: 1/3;
    margin: 0;
    align-self: center;
  }
  .price strong {
    font-size: 30px;
  }
  .quota {
    grid-column: 1;
    padding: 16px 0 0;
    margin-top: 18px;
    border: 0;
    font-size: 13px;
  }
  .plan-card .button {
    grid-column: 2;
    min-height: 44px;
    margin-top: 18px;
    font-size: 12px;
    padding: 0 16px;
  }
  .plan-features {
    gap: 9px 16px;
    font-size: 11px;
    margin-top: 22px;
  }
  .plan-footnote {
    max-width: 300px;
    margin-inline: auto;
    line-height: 1.8;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq .text-link {
    margin-top: 8px;
  }
  .faq summary {
    min-height: 69px;
    font-size: 14px;
  }
  .closing {
    padding-bottom: 56px;
  }
  .closing-inner {
    flex-direction: column;
    align-items: start;
    padding: 32px 26px;
    gap: 25px;
    border-radius: 22px;
  }
  .closing h2 {
    font-size: 28px;
  }
  .closing p {
    font-size: 13px;
  }
  .closing .button {
    font-size: 13px;
  }
  .footer {
    padding-top: 32px;
  }
  .footer-top {
    flex-direction: column;
    gap: 18px;
  }
  .footer nav {
    gap: 0 20px;
    font-size: 11px;
  }
  .footer-meta {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  .shell {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 33px;
  }
  .hero-lede {
    font-size: 14px;
  }
  .store-actions {
    gap: 8px;
  }
  .store-button {
    min-width: 0;
    flex: 1;
    padding: 10px 8px;
    gap: 8px;
  }
  .store-button span {
    font-size: 13px;
  }
  .hero-visual {
    height: 400px;
    padding-right: 12px;
  }
  .phone-crop {
    width: 218px;
  }
  .note-card {
    max-width: 183px;
    left: 12px;
    bottom: 28px;
  }
  .section-heading h2 {
    font-size: 28px;
  }
  .review-card {
    padding: 20px;
  }
  .review-card-top {
    flex-direction: column;
    align-items: start;
  }
  .plan-card {
    padding: 20px;
    column-gap: 12px;
  }
  .price strong {
    font-size: 27px;
  }
  .plan-description {
    font-size: 11px;
  }
  .header-cta {
    padding-inline: 13px;
  }
  .screens-header h2 {
    font-size: 27px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
