:root {
  --bg: oklch(1 0 0);
  --surface: oklch(0.965 0.004 75);
  --surface-strong: oklch(0.925 0.006 70);
  --ink: oklch(0.18 0.012 75);
  --muted: oklch(0.43 0.012 75);
  --primary: oklch(0.58 0.13 58);
  --primary-dark: oklch(0.34 0.08 58);
  --line: oklch(0.88 0.004 75);
  --white: oklch(1 0 0);
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
}

.gmo-card-registration-page {
  min-height: 100vh;
  background: linear-gradient(180deg, color-mix(in oklch, var(--surface) 72%, var(--white)), var(--white));
}

.gmo-registration-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
}

.gmo-registration-panel {
  width: min(720px, 100%);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 48px color-mix(in oklch, var(--ink) 12%, transparent);
}

.gmo-registration-panel h1 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.gmo-registration-lead,
.gmo-registration-note {
  margin: 0;
  color: var(--muted);
}

.gmo-registration-status {
  padding: 12px 14px;
  border: 1px solid color-mix(in oklch, var(--primary) 28%, var(--line));
  border-radius: 8px;
  background: color-mix(in oklch, var(--primary) 8%, var(--white));
  font-weight: 700;
}

.gmo-registration-status.is-error {
  border-color: oklch(0.74 0.16 28);
  background: oklch(0.97 0.028 28);
  color: oklch(0.36 0.12 28);
}

.gmo-registration-details {
  display: grid;
  gap: 10px;
  margin: 0;
}

.gmo-registration-details div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.gmo-registration-details dt {
  color: var(--muted);
  font-weight: 700;
}

.gmo-registration-details dd {
  margin: 0;
  font-weight: 700;
}

.gmo-registration-panel .primary-button {
  justify-self: start;
  border: 0;
  border-radius: 8px;
  padding: 12px 22px;
  background: var(--primary-dark);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.gmo-registration-panel .primary-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: color-mix(in oklch, var(--white) 92%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--line) 80%, transparent);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 1.22rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: inset 0 0 0 5px var(--primary-dark);
}

.nav-links {
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
}

.nav-links a,
.text-link,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--primary-dark);
}

.header-actions {
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.button:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
}

.button.small {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.button.secondary {
  background: var(--surface-strong);
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100svh - 68px);
  padding: clamp(58px, 8vw, 92px) clamp(18px, 4vw, 48px) 28px;
  overflow: hidden;
}

.hero-copy {
  max-width: 640px;
  justify-self: end;
}

.kicker {
  margin: 0 0 18px;
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 700;
}

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

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.3vw, 5.45rem);
  max-width: 11.5ch;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 3.8vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.7vw, 1.62rem);
}

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

.mobile-heading {
  display: none;
}

.desktop-heading {
  display: block;
}

.lead {
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  text-wrap: pretty;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: clamp(430px, 44vw, 620px);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0 -10vw 8% 4%;
  width: calc(100% + 10vw);
  height: 92%;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.94);
  z-index: -2;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 10% -3vw 0 16%;
  border-radius: 8px;
  background: linear-gradient(90deg, color-mix(in oklch, var(--bg) 88%, transparent), transparent 52%);
  z-index: -1;
}

.router-float {
  position: absolute;
  right: 4%;
  bottom: 7%;
  width: min(520px, 82%);
  filter: drop-shadow(0 22px 18px color-mix(in oklch, var(--ink) 24%, transparent));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px) clamp(42px, 7vw, 82px);
}

.trust-strip div {
  padding: 20px 22px;
  background: var(--surface);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 3px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: clamp(76px, 10vw, 144px) clamp(18px, 4vw, 48px);
  scroll-margin-top: 80px;
}

.section-intro {
  max-width: 850px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.section-intro p:not(.kicker),
.network-copy p,
.apply-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  text-wrap: pretty;
}

.pricing-section,
.devices-section,
.use-section {
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.price-card {
  min-height: 260px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-card.primary-card {
  background: var(--ink);
  color: var(--white);
}

.price-card p {
  color: var(--muted);
}

.price-card.primary-card p {
  color: oklch(0.86 0 0);
}

.card-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-size: 0.94rem;
  font-weight: 800;
}

.pricing-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  max-width: var(--max);
  margin: 18px auto 0;
}

.rate-panel {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.campaign-banner {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  max-width: var(--max);
  margin: 0 auto clamp(18px, 3vw, 28px);
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid oklch(0.2 0 0);
  border-radius: 8px;
  background: oklch(0.12 0 0);
  color: var(--white);
}

.campaign-banner[hidden] {
  display: none;
}

.campaign-banner span,
.campaign-banner strong {
  display: block;
}

.campaign-banner span {
  margin-bottom: 6px;
  color: oklch(0.78 0 0);
  font-size: 0.9rem;
  font-weight: 800;
}

.campaign-banner strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.25;
}

.campaign-banner p {
  margin: 0;
  color: oklch(0.9 0 0);
  font-weight: 700;
}

.rate-panel-head p {
  color: var(--muted);
}

.table-label {
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.tier-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.tier-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.tier-list div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.tier-list div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.tier-list span {
  color: var(--muted);
  font-weight: 700;
}

.tier-list strong {
  font-size: 1.08rem;
}

.fee-note,
.device-note {
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.network-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
}

.network-copy {
  max-width: 590px;
}

.network-panel {
  padding: clamp(22px, 3vw, 36px);
  border-radius: 8px;
  background: var(--surface);
}

.carrier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.carrier-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
}

.signal-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--primary-dark);
  font-weight: 800;
}

.signal-path span {
  height: 1px;
  background: var(--primary);
}

.network-panel img {
  width: min(520px, 100%);
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.use-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: stretch;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.use-photo {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
}

.use-list {
  display: grid;
  gap: 12px;
}

.use-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.use-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.device-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.device-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.device-card-media {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 24px;
  background: var(--surface);
}

.device-card-media img {
  max-height: 260px;
  object-fit: contain;
}

.light-device img {
  opacity: 0.9;
}

.r45-device img {
  max-height: 230px;
  opacity: 0.96;
}

.device-card-copy {
  padding: clamp(22px, 3vw, 34px);
}

.device-card-copy p:not(.card-label) {
  color: var(--muted);
}

.device-price-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.device-price-list div {
  padding: 12px;
  border-right: 1px solid var(--line);
}

.device-price-list div:last-child {
  border-right: 0;
}

.device-price-list dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.device-price-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.flow-section {
  background: var(--bg);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.flow-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.flow-list strong {
  font-size: 1.08rem;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.apply-section {
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
}

.conversion-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: start;
  gap: clamp(18px, 3vw, 28px);
}

.order-cart,
.contact-form {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-margin-top: 88px;
}

.order-cart {
  display: grid;
  gap: 18px;
  background: var(--surface);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: var(--surface);
}

.inquiry-form {
  background: var(--white);
}

.cart-head,
.cart-item {
  display: flex;
  align-items: center;
}

.cart-head {
  justify-content: space-between;
  gap: 18px;
}

.cart-head h3,
.form-head h3 {
  margin-bottom: 0;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.application-type-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.application-type-switch label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
}

.application-type-switch input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.application-type-switch label:has(input:checked) {
  background: var(--ink);
  color: var(--white);
}

.application-panel {
  display: grid;
  gap: 18px;
}

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

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-item {
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.cart-item input[type="radio"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-dark);
}

.cart-item.is-selected {
  border-color: var(--primary-dark);
  background: color-mix(in srgb, var(--primary) 7%, var(--white));
}

.cart-thumb {
  display: grid;
  place-items: center;
  flex: 0 0 96px;
  width: 96px;
  height: 68px;
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.cart-thumb img {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.cart-main {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.cart-main strong,
.cart-price {
  font-weight: 800;
}

.cart-main small {
  color: oklch(0.32 0 0);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cart-price {
  margin-left: auto;
  max-width: 170px;
  text-align: right;
  line-height: 1.35;
}

.cart-options,
.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.corporate-base,
.application-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.form-group-title {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.application-card-list {
  display: grid;
  gap: 14px;
}

.application-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.application-card-head h4 {
  margin: 0;
  font-size: 1.05rem;
}

.remove-card-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.application-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.corporate-device-preview {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: oklch(0.98 0.012 250);
}

.corporate-device-preview__media {
  display: grid;
  place-items: center;
  width: 78px;
  height: 54px;
  border-radius: 6px;
  background: white;
  overflow: hidden;
}

.corporate-device-preview__media img {
  width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.corporate-device-preview__body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.corporate-device-preview__body span {
  color: oklch(0.4 0 0);
  font-size: 0.76rem;
  font-weight: 800;
}

.corporate-device-preview__body strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.corporate-device-preview__body small {
  color: oklch(0.34 0 0);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.address-copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.address-copy-row label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  line-height: 1.55;
}

.address-copy-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--primary-dark);
}

.address-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.address-fields.is-hidden {
  display: none;
}

.add-card-button {
  justify-self: start;
}

.cart-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.cart-summary div {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 58px;
  padding: 12px 14px;
}

.cart-summary div + div {
  border-left: 1px solid var(--line);
}

.cart-summary span {
  color: oklch(0.32 0 0);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.cart-summary strong {
  font-size: 0.94rem;
  line-height: 1.35;
}

.cart-summary small {
  color: oklch(0.35 0 0);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.4;
}

#device-payment,
#device-total {
  color: var(--primary-dark);
  font-size: 1rem;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

label.is-required span::after {
  content: " 必須";
  color: #b42318;
  font-size: 0.78rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary) 22%, transparent);
}

.wide,
.wide-button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: oklch(0.35 0 0);
  font-size: 0.88rem;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 48px);
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
}

.site-footer p,
.footer-brand {
  margin: 0;
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
}

.site-footer p:not(.footer-brand) {
  color: oklch(0.82 0 0);
}

.footer-trust,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-trust span,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid color-mix(in oklch, var(--white) 18%, transparent);
  border-radius: 999px;
}

.footer-trust span {
  color: oklch(0.9 0 0);
}

.footer-links a {
  color: var(--white);
}

.legal-header {
  position: static;
}

.legal-shell {
  padding: clamp(48px, 8vw, 92px) clamp(18px, 4vw, 48px);
  background: var(--surface);
}

.legal-document {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-document h1 {
  max-width: none;
  margin-top: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-document h2 {
  margin-top: 34px;
}

.legal-document p,
.legal-document li,
.legal-table td {
  color: var(--muted);
}

.legal-note {
  margin-top: 40px;
  text-align: right;
}

.legal-table {
  display: block;
  overflow-x: auto;
}

.legal-table tbody {
  display: table;
  width: 100%;
}

.legal-table th {
  width: 30%;
  color: var(--ink);
  text-align: left;
  white-space: nowrap;
}

.legal-table th,
.legal-table td {
  vertical-align: top;
}

.motion-ready .reveal,
.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .hero,
  .network-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: clamp(52px, 8vw, 76px);
  }

  .hero-copy,
  .network-copy {
    max-width: 720px;
    justify-self: start;
  }

  .hero-visual {
    min-height: clamp(380px, 52vw, 560px);
  }

  h1 {
    font-size: clamp(3rem, 8vw, 4.9rem);
    max-width: 11.5ch;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .use-layout,
  .pricing-grid,
  .pricing-detail,
  .campaign-banner,
  .device-compare,
  .conversion-layout,
  .flow-list,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-bg,
  .hero-visual::after {
    inset: 0;
    width: 100%;
  }

  .router-float {
    right: 3%;
    width: 96%;
  }

  .trust-strip {
    padding-bottom: 28px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
  }

  .brand span:last-child {
    max-width: 170px;
    white-space: normal;
    line-height: 1.2;
  }

  .text-link {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.9rem);
  }

  .pricing-heading .desktop-heading {
    display: none;
  }

  .pricing-heading .mobile-heading {
    display: block;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .contact-form,
  .cart-options,
  .checkout-fields,
  .application-card-grid,
  .address-fields,
  .cart-summary,
  .tier-list,
  .device-price-list {
    grid-template-columns: 1fr;
  }

  .tier-list div:nth-child(odd) {
    border-right: 0;
  }

  .tier-list div:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .device-price-list div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .device-price-list div:last-child {
    border-bottom: 0;
  }

  .cart-item {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .cart-thumb {
    flex-basis: 84px;
    width: 84px;
    height: 60px;
  }

  .cart-price {
    width: 100%;
    margin-left: 32px;
    max-width: none;
    text-align: left;
  }

  .cart-summary div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer {
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Official application page alignment */
:root {
  --bg: oklch(1 0 0);
  --surface: oklch(0.965 0 0);
  --surface-strong: oklch(0.94 0 0);
  --ink: oklch(0.15 0 0);
  --muted: oklch(0.42 0 0);
  --line: oklch(0.86 0 0);
  --white: oklch(1 0 0);
  --blue: #0067b8;
  --blue-dark: #005da6;
  --black: oklch(0.055 0.006 248);
  --max: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.apply-page {
  background: var(--bg);
  color: var(--ink);
}

.apply-page h1,
.apply-page h2,
.apply-page h3 {
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.apply-page h1 {
  max-width: 11.5em;
  margin-bottom: 18px;
  color: white;
  font-size: clamp(2rem, 3.35vw, 3.45rem);
  font-weight: 900;
}

.apply-page h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
}

.apply-page h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
}

.apply-page h1 span,
.apply-page h2 .heading-line {
  display: block;
  white-space: normal;
}

.mock-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
  background: oklch(1 0 0 / 0.96);
  backdrop-filter: blur(8px);
}

.mock-brand,
.mock-nav,
.mock-actions,
.hero-actions {
  display: flex;
  align-items: center;
}

.mock-brand {
  gap: 10px;
  color: oklch(0.22 0 0);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 2px;
}

.brand-grid i {
  display: block;
}

.brand-grid i:nth-child(1) {
  background: var(--blue);
}

.brand-grid i:nth-child(2) {
  background: oklch(0.2 0 0);
}

.brand-grid i:nth-child(3) {
  background: oklch(0.58 0 0);
}

.brand-grid i:nth-child(4) {
  background: oklch(0.84 0 0);
}

.mock-nav {
  gap: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.mock-nav a,
.text-action {
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 4px;
  text-decoration: none;
}

.mock-nav a:hover,
.text-action:hover {
  background: oklch(0.97 0 0);
  color: var(--blue-dark);
}

.mock-actions {
  gap: 14px;
  white-space: nowrap;
}

.solid-action,
.outline-action,
.apply-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.solid-action,
.apply-page .button {
  border: 0;
  background: var(--blue);
  color: white;
}

.solid-action:hover,
.outline-action:hover,
.apply-page .button:hover {
  transform: translateY(-1px);
}

.solid-action:hover,
.apply-page .button:hover {
  background: var(--blue-dark);
}

.outline-action,
.apply-page .button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.outline-action:hover,
.apply-page .button.secondary:hover {
  border-color: oklch(0.74 0 0);
  background: oklch(0.98 0 0);
}

.solid-action.large,
.outline-action.large,
.apply-page .button.wide-button {
  min-height: 50px;
  padding-inline: 24px;
}

.product-label,
.section-label,
.apply-page .kicker,
.card-label,
.table-label {
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 900;
}

.apply-page .kicker,
.card-label {
  letter-spacing: 0;
}

.apply-page .section {
  padding: clamp(30px, 4.2vw, 48px) clamp(20px, 4vw, 48px) clamp(42px, 6vw, 64px);
  background:
    linear-gradient(180deg, oklch(0.985 0 0), white 42%),
    white;
}

.apply-page .section-intro,
.apply-page .section-copy {
  max-width: var(--max);
  margin-inline: auto;
}

.apply-page .section-intro {
  max-width: 760px;
  margin-bottom: clamp(22px, 3vw, 34px);
  text-align: center;
}

.apply-page .section-intro p:not(.kicker),
.apply-page .section-copy p:not(.kicker),
.apply-page .problem-copy p,
.apply-page .network-copy p {
  max-width: 66ch;
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.9;
  text-wrap: pretty;
}

.conversion-layout {
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
  gap: clamp(18px, 2.4vw, 26px);
  align-items: start;
}

.order-cart,
.contact-form,
.rate-panel,
.price-card,
.device-card,
.use-item {
  border: 1px solid oklch(0.82 0 0);
  border-radius: 8px;
  background: white;
}

.order-cart,
.contact-form {
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 4px 8px oklch(0.15 0 0 / 0.06);
}

.order-cart {
  background:
    linear-gradient(180deg, white, oklch(0.975 0 0));
}

.inquiry-form {
  position: sticky;
  top: 86px;
}

.cart-count,
.application-type-switch,
.cart-item,
.corporate-base,
.application-card,
.cart-summary,
.address-copy-row {
  border-radius: 8px;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.application-type-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  background: white;
}

.application-type-switch label {
  min-height: 46px;
  place-items: center;
  border-radius: 4px;
  color: var(--muted);
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.application-type-switch label:has(input:checked) {
  background: var(--black);
  color: white;
}

.cart-item {
  border-color: var(--line);
  background: white;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.cart-item:hover,
.cart-item:focus-within {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.cart-item.is-selected {
  border-color: var(--blue);
  background: oklch(0.97 0.025 250);
}

.cart-item input[type="radio"],
.address-copy-row input {
  accent-color: var(--blue);
}

.cart-thumb {
  border-radius: 6px;
  background: var(--surface);
}

.cart-summary {
  border: 1px solid var(--line);
  background: white;
}

.cart-summary span,
.form-note {
  color: oklch(0.4 0 0);
}

#device-payment,
#device-total {
  color: var(--blue-dark);
}

.corporate-base,
.application-card {
  border-color: var(--line);
  background: white;
}

.corporate-base {
  border-color: oklch(0.72 0.09 250);
  background: oklch(0.985 0.01 250);
}

.application-card {
  box-shadow: 0 4px 8px oklch(0.15 0 0 / 0.05);
}

.application-card-head {
  align-items: flex-start;
}

.application-card-head h4 {
  font-size: 1.1rem;
}

.remove-card-button {
  border-radius: 4px;
  transition: border-color 180ms var(--ease), color 180ms var(--ease);
}

.remove-card-button:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.address-copy-row {
  border-color: var(--line);
  background: var(--surface);
}

.apply-page label {
  color: oklch(0.31 0 0);
}

.apply-page input,
.apply-page select,
.apply-page textarea {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font-size: 1rem;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.apply-page input::placeholder,
.apply-page textarea::placeholder {
  color: oklch(0.48 0 0);
}

.apply-page input:focus,
.apply-page select:focus,
.apply-page textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px oklch(0.72 0.12 250 / 0.28);
}

.flow-list {
  max-width: var(--max);
  margin-inline: auto;
}

.flow-list li {
  border-radius: 8px;
}

.official-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 46px);
  border-top: 1px solid var(--line);
  background: oklch(0.98 0 0);
  color: var(--muted);
}

.official-footer__brand,
.official-footer__links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.official-footer__brand strong {
  color: var(--ink);
}

.official-footer__links a {
  min-height: 36px;
  text-decoration: none;
}

.official-footer__links a:hover {
  color: var(--blue-dark);
}

@media (max-width: 1080px) {
  .conversion-layout {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    position: static;
  }
}

@media (max-width: 900px) {
  .mock-nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .mock-header {
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px 14px;
  }

  .mock-brand {
    gap: 8px;
    min-width: 0;
    font-size: 0.95rem;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 7px);
    grid-template-rows: repeat(2, 7px);
    flex: 0 0 auto;
  }

  .mock-brand span:last-child {
    max-width: 136px;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    line-height: 1.2;
  }

  .mock-actions {
    gap: 8px;
    flex: 0 0 auto;
  }

  .mock-actions .solid-action {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  .text-action {
    display: none;
  }

  .apply-page h1 {
    font-size: clamp(1.82rem, 8.6vw, 2.35rem);
  }

  .apply-page h2 {
    font-size: clamp(1.55rem, 6vw, 1.92rem);
  }

  .apply-page .section {
    padding: 30px 16px 42px;
  }

  .apply-page .section-intro {
    text-align: left;
  }

  .apply-page h1 span,
  .apply-page h2 .heading-line {
    white-space: normal;
  }

  .solid-action.large,
  .outline-action.large {
    width: 100%;
  }

  .official-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .order-cart,
  .contact-form {
    padding: 16px;
  }

  .application-type-switch {
    grid-template-columns: 1fr;
  }

  .cart-head,
  .application-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 24px 82px minmax(0, 1fr);
    gap: 9px 10px;
    align-items: start;
    padding: 12px;
  }

  .cart-thumb {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 82px;
    height: 58px;
    min-width: 0;
  }

  .cart-main {
    grid-column: 3;
    grid-row: 1;
    margin-left: 0;
  }

  .cart-price {
    grid-column: 3;
    grid-row: 2;
    margin-left: 0;
    text-align: left;
  }

  .cart-main small {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .cart-price {
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .cart-summary {
    grid-template-columns: 1fr;
  }

  .cart-summary div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .address-copy-row label {
    align-items: flex-start;
    font-size: 0.9rem;
  }

  .corporate-device-preview {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 9px;
    padding: 9px;
  }

  .corporate-device-preview__media {
    width: 64px;
    height: 46px;
  }

  .corporate-device-preview__media img {
    max-height: 42px;
  }

  .corporate-device-preview__body small {
    font-size: 0.74rem;
    line-height: 1.38;
  }

  .remove-card-button {
    width: 100%;
  }
}
