:root {
  --go-primary: #46a928;
  --go-primary-bright: #8be36f;
  --go-primary-dark: #2f7f20;
  --go-ink: #122015;
  --go-ink-soft: #405044;
  --go-line: #dce5dc;
  --go-surface: #ffffff;
  --go-mist: #f2f6f1;
  --go-dark: #102412;
  --go-radius: 12px;
  --go-shell: 1240px;
  --go-shadow: 0 30px 80px rgb(10 31 14 / 14%);
  --go-font: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--go-ink);
  background: var(--go-surface);
  font-family: var(--go-font);
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font: inherit;
}

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

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

button {
  margin: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
ul,
ol,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
}

p {
  color: var(--go-ink-soft);
}

::selection {
  color: var(--go-dark);
  background: #c8f1bd;
}

:focus-visible {
  outline: 3px solid var(--go-primary-bright);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--go-dark);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(calc(100% - 64px), var(--go-shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(88px, 11vw, 168px);
}

.section-kicker {
  margin-bottom: 22px;
  color: var(--go-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  max-width: 720px;
  gap: 22px;
}

.section-heading > p:last-child {
  max-width: 610px;
  font-size: 1.08rem;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  color: #fff;
  background: rgb(9 20 10 / 68%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.brand-link img {
  width: auto;
  height: 34px;
  filter: brightness(0) invert(1);
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-navigation a {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 12px;
  align-items: center;
  border-radius: 8px;
  color: rgb(255 255 255 / 84%);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-navigation a:hover {
  color: #fff;
  background: rgb(255 255 255 / 10%);
}

.site-navigation .header-cta {
  margin-left: 8px;
  padding-inline: 18px;
  color: var(--go-dark);
  background: var(--go-primary-bright);
}

.site-navigation .header-cta:hover {
  color: var(--go-dark);
  background: #a3f18f;
}

.menu-toggle {
  display: none;
  width: 44px;
  min-height: 44px;
  padding: 10px;
  border-radius: 8px;
}

.menu-toggle > span[aria-hidden="true"] {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--go-dark);
  background: var(--go-primary-bright);
}

.button-primary:hover {
  background: #a3f18f;
}

.button-ghost {
  border-color: rgb(255 255 255 / 38%);
  color: #fff;
  background: rgb(255 255 255 / 8%);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: #fff;
  background: rgb(255 255 255 / 14%);
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
  background: var(--go-dark);
}

.hero-picture,
.hero-picture::after,
.hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  z-index: -2;
}

.hero-picture img {
  object-fit: cover;
  object-position: center;
}

.hero-picture::after {
  content: "";
  background:
    linear-gradient(90deg, rgb(6 16 7 / 92%) 0%, rgb(6 16 7 / 67%) 38%, rgb(6 16 7 / 10%) 72%),
    linear-gradient(0deg, rgb(6 16 7 / 52%) 0%, transparent 42%);
}

.hero-layout {
  display: flex;
  min-height: max(820px, 100svh);
  padding-top: 126px;
  padding-bottom: 88px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy .section-kicker {
  color: var(--go-primary-bright);
}

.hero-copy h1 {
  font-size: clamp(3rem, 6.7vw, 6.9rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-line + .hero-title-line {
  margin-top: 12px;
}

.hero-lead {
  max-width: 610px;
  margin-top: 34px;
  color: rgb(255 255 255 / 78%);
  font-size: clamp(1.06rem, 1.7vw, 1.32rem);
  line-height: 1.72;
}

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

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  color: rgb(255 255 255 / 68%);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.hero-scroll::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.operations-section {
  overflow: hidden;
  background: #f8faf7;
}

.operations-layout {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: clamp(48px, 8vw, 120px);
}

.section-heading-wide {
  max-width: 780px;
}

.operations-lead {
  padding-top: 28px;
  border-top: 2px solid var(--go-primary);
  font-size: 1.08rem;
}

.operations-rail {
  display: grid;
  margin-top: clamp(64px, 8vw, 108px);
  border-top: 1px solid var(--go-line);
  border-bottom: 1px solid var(--go-line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.operations-rail article {
  min-height: 210px;
  padding: 32px;
  border-right: 1px solid var(--go-line);
}

.operations-rail article:first-child {
  border-left: 1px solid var(--go-line);
}

.operations-rail article > p:first-child {
  margin-bottom: 48px;
  color: var(--go-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.operations-rail article > p:last-child {
  margin-top: 12px;
  font-size: 0.92rem;
}

.capabilities-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgb(90 195 62 / 20%), transparent 30%),
    var(--go-dark);
}

.capabilities-section .section-kicker {
  color: var(--go-primary-bright);
}

.capabilities-section p {
  color: rgb(255 255 255 / 66%);
}

.capability-heading {
  max-width: 820px;
}

.admin-showcase {
  width: min(1120px, 100%);
  margin: clamp(56px, 7vw, 90px) auto 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 18px;
  background: #f5f7f4;
  box-shadow: 0 48px 100px rgb(0 0 0 / 32%);
}

.showcase-chrome {
  display: flex;
  min-height: 48px;
  padding: 0 18px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #e2e7e1;
  color: #7b877d;
  background: #fff;
}

.showcase-chrome i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d6ddd5;
}

.showcase-chrome p {
  margin-left: 10px;
  color: #7b877d;
  font-size: 0.74rem;
}

.product-screen {
  height: auto;
  object-fit: contain;
}

.desktop-product-screen {
  width: 100%;
  border: 0;
}

.admin-showcase figcaption {
  padding: 13px 18px 15px;
  color: #5b685e;
  background: #fff;
  font-size: 0.78rem;
}

.product-section {
  overflow: hidden;
  background: #edf4ec;
}

.product-layout {
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: minmax(320px, 0.8fr) minmax(430px, 1.2fr);
  gap: clamp(56px, 8vw, 120px);
}

.product-copy {
  max-width: 570px;
}

.product-copy > p:not(.section-kicker) {
  margin-top: 26px;
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  padding: 0;
  margin-top: 34px;
  list-style: none;
  gap: 0;
}

.feature-list li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-bottom: 1px solid rgb(26 59 28 / 14%);
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 23px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--go-primary);
  content: "";
}

.phone-stage {
  position: relative;
  min-height: 660px;
}

.phone-stage::before {
  position: absolute;
  top: 12%;
  right: 2%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--go-primary);
  content: "";
  opacity: 0.12;
}

.phone-frame {
  position: absolute;
  width: min(329px, 54%);
  padding: 10px;
  border: 1px solid rgb(18 32 21 / 12%);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--go-shadow);
}

.phone-frame img {
  width: 100%;
  border-radius: 22px;
}

.phone-frame figcaption {
  padding: 12px 4px 6px;
  color: #6c786e;
  font-size: 0.76rem;
  text-align: center;
}

.phone-frame-main {
  top: 0;
  right: 2%;
  z-index: 2;
}

.phone-frame-back {
  bottom: 0;
  left: 6%;
  z-index: 1;
  transform: rotate(-4deg);
}

.screen-strip {
  display: grid;
  margin-top: clamp(70px, 10vw, 130px);
  align-items: end;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 38px);
}

.screen-strip figure {
  min-width: 0;
}

.screen-strip img {
  width: min(100%, 260px);
  margin-inline: auto;
  border: 1px solid rgb(18 32 21 / 10%);
  border-radius: 16px;
  box-shadow: 0 22px 58px rgb(20 49 23 / 12%);
}

.screen-strip figcaption {
  margin-top: 18px;
  color: #354a38;
  font-weight: 750;
  text-align: center;
}

.onboarding-section {
  background: #fff;
}

.onboarding-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(480px, 1.38fr);
  gap: clamp(56px, 9vw, 130px);
}

.onboarding-steps {
  padding: 0;
  border-top: 1px solid var(--go-line);
  list-style: none;
}

.onboarding-steps li {
  display: grid;
  min-height: 118px;
  padding: 24px 0;
  align-items: center;
  border-bottom: 1px solid var(--go-line);
  grid-template-columns: 74px 180px minmax(0, 1fr);
  gap: 24px;
}

.onboarding-steps li::before {
  color: var(--go-primary-dark);
  content: attr(data-step);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(125deg, transparent 0 55%, rgb(97 201 67 / 14%) 55% 100%),
    #153318;
}

.contact-section .section-kicker {
  color: var(--go-primary-bright);
}

.contact-section p,
.contact-section dd {
  color: rgb(255 255 255 / 67%);
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.68fr) minmax(520px, 1.02fr);
  gap: clamp(56px, 9vw, 130px);
}

.contact-copy > p:not(.section-kicker) {
  margin-top: 26px;
}

.contact-points {
  margin-top: 52px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.contact-points > div {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  grid-template-columns: 80px 1fr;
}

.contact-points dt {
  color: var(--go-primary-bright);
  font-size: 0.84rem;
  font-weight: 760;
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 18px;
  color: var(--go-ink);
  background: #fff;
  box-shadow: 0 34px 80px rgb(0 0 0 / 25%);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: inline-block;
  margin-bottom: 8px;
  color: #27362a;
  font-size: 0.86rem;
  font-weight: 740;
}

.form-field label span {
  margin-left: 4px;
  color: var(--go-primary-dark);
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #ccd7cd;
  border-radius: 8px;
  color: var(--go-ink);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--go-primary-dark);
  outline: 0;
  box-shadow: 0 0 0 3px rgb(70 169 40 / 14%);
}

.field-error {
  min-height: 18px;
  margin-top: 5px;
  color: #b42318 !important;
  font-size: 0.78rem;
}

.consent-field {
  display: flex;
  margin-top: 24px;
  align-items: flex-start;
  gap: 10px;
  color: #526055;
  font-size: 0.86rem;
  cursor: pointer;
}

.consent-field input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--go-primary-dark);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--go-primary);
}

.form-submit:hover {
  background: var(--go-primary-bright);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  font-size: 0.88rem;
  text-align: center;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.faq-section {
  background: #f7f9f6;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(500px, 1.25fr);
  gap: clamp(56px, 9vw, 130px);
}

.faq-list {
  border-top: 1px solid var(--go-line);
}

.faq-list details {
  border-bottom: 1px solid var(--go-line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  font-size: 1.08rem;
  font-weight: 740;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 8px;
  color: var(--go-primary-dark);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 52px 26px 0;
}

.site-footer {
  padding-block: 46px;
  color: #fff;
  background: #0a170c;
}

.footer-layout {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
}

.footer-layout > img {
  width: auto;
  height: 34px;
  filter: brightness(0) invert(1);
}

.footer-layout p {
  margin-top: 4px;
  color: rgb(255 255 255 / 58%);
  font-size: 0.88rem;
}

.footer-layout nav {
  display: flex;
  gap: 18px;
  color: rgb(255 255 255 / 72%);
  font-size: 0.88rem;
}

.policy-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 48px));
  padding: 0;
  border: 0;
  border-radius: 14px;
  color: var(--go-ink);
  background: #fff;
  box-shadow: 0 30px 90px rgb(0 0 0 / 35%);
}

.policy-dialog::backdrop {
  background: rgb(5 12 6 / 68%);
  backdrop-filter: blur(4px);
}

.policy-dialog-header {
  display: flex;
  padding: 22px 24px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--go-line);
}

.policy-dialog-header h2 {
  font-size: 1.35rem;
}

.policy-dialog-header button {
  min-width: 44px;
  min-height: 44px;
  font-weight: 700;
}

.policy-dialog-body {
  max-height: 66vh;
  padding: 24px;
  overflow-y: auto;
}

@media (max-width: 1100px) {
  .site-shell {
    width: min(calc(100% - 48px), var(--go-shell));
  }

  .site-navigation a:not(.header-cta) {
    padding-inline: 9px;
    font-size: 0.84rem;
  }

  .hero-picture::after {
    background:
      linear-gradient(90deg, rgb(6 16 7 / 88%) 0%, rgb(6 16 7 / 58%) 48%, rgb(6 16 7 / 10%) 88%),
      linear-gradient(0deg, rgb(6 16 7 / 52%) 0%, transparent 52%);
  }

  .operations-rail article {
    min-height: 190px;
    padding: 24px;
  }

  .product-layout,
  .contact-layout {
    grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1fr);
  }

  .phone-frame {
    width: min(300px, 58%);
  }
}

@media (max-width: 860px) {
  .site-header {
    background: rgb(9 20 10 / 90%);
  }

  .menu-toggle {
    display: block;
  }

  .site-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px 24px 22px;
    align-items: stretch;
    flex-direction: column;
    background: rgb(9 20 10 / 97%);
    box-shadow: 0 18px 38px rgb(0 0 0 / 24%);
  }

  .site-navigation.is-open {
    display: flex;
  }

  .site-navigation a,
  .site-navigation a:not(.header-cta) {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.95rem;
  }

  .site-navigation .header-cta {
    margin: 8px 0 0;
    justify-content: center;
  }

  .operations-layout,
  .product-layout,
  .onboarding-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .operations-lead {
    max-width: 620px;
  }

  .operations-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operations-rail article:nth-child(3) {
    border-left: 1px solid var(--go-line);
  }

  .operations-rail article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--go-line);
  }

  .product-layout {
    gap: 70px;
  }

  .phone-stage {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .screen-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 52px;
  }

  .onboarding-steps li {
    grid-template-columns: 60px 170px minmax(0, 1fr);
  }

  .contact-copy {
    max-width: 620px;
  }

  .contact-form {
    width: min(680px, 100%);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 36px), var(--go-shell));
  }

  .section {
    padding-block: 88px;
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.25rem);
  }

  .hero-section {
    min-height: 760px;
  }

  .hero-layout {
    min-height: max(760px, 100svh);
    padding-top: 118px;
    padding-bottom: 90px;
    align-items: flex-end;
  }

  .hero-picture img {
    object-position: center top;
  }

  .hero-picture::after {
    background:
      linear-gradient(0deg, rgb(5 14 7 / 97%) 0%, rgb(5 14 7 / 82%) 39%, rgb(5 14 7 / 5%) 76%),
      linear-gradient(90deg, rgb(5 14 7 / 28%), transparent 75%);
  }

  .hero-copy h1 {
    font-size: clamp(2.68rem, 13.7vw, 4.8rem);
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .hero-scroll {
    display: none;
  }

  .operations-rail article {
    min-height: 170px;
    padding: 22px;
  }

  .operations-rail article > p:first-child {
    margin-bottom: 34px;
  }

  .admin-showcase {
    border-radius: 12px;
  }

  .admin-showcase .desktop-product-screen {
    min-width: 740px;
  }

  .admin-showcase {
    overflow-x: auto;
  }

  .showcase-chrome,
  .admin-showcase figcaption {
    min-width: 740px;
  }

  .phone-stage {
    min-height: 610px;
  }

  .phone-frame {
    width: min(280px, 62%);
  }

  .phone-frame-main {
    right: 0;
  }

  .phone-frame-back {
    left: 0;
  }

  .onboarding-layout,
  .faq-layout {
    gap: 54px;
  }

  .onboarding-steps li {
    grid-template-columns: 48px 1fr;
    gap: 8px 16px;
  }

  .onboarding-steps li p {
    grid-column: 2;
  }

  .contact-layout {
    gap: 48px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .footer-layout {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .site-shell {
    width: min(calc(100% - 28px), var(--go-shell));
  }

  .section {
    padding-block: 76px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-link img {
    height: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 13vw, 3.75rem);
  }

  .operations-rail {
    grid-template-columns: 1fr;
  }

  .operations-rail article,
  .operations-rail article:first-child,
  .operations-rail article:nth-child(3) {
    min-height: 148px;
    border: 0;
    border-bottom: 1px solid var(--go-line);
  }

  .operations-rail article:first-child {
    border-top: 1px solid var(--go-line);
  }

  .operations-rail article > p:first-child {
    margin-bottom: 24px;
  }

  .phone-stage {
    min-height: 540px;
  }

  .phone-frame {
    width: min(240px, 66%);
    padding: 7px;
    border-radius: 24px;
  }

  .phone-frame img {
    border-radius: 18px;
  }

  .screen-strip {
    grid-template-columns: 1fr 1fr;
    gap: 42px 14px;
  }

  .screen-strip img {
    border-radius: 12px;
  }

  .screen-strip figcaption {
    margin-top: 12px;
    font-size: 0.9rem;
  }

  .contact-points > div {
    grid-template-columns: 68px 1fr;
  }

  .faq-list summary {
    font-size: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
