@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+Display:wght@600;700;800&family=Public+Sans:wght@400;500;600;700&display=swap");

.cope {
  --ink: #2c2926;
  --charcoal: #5a5e62;
  --paper: #f3eee6;
  --cream: #f7f2ea;
  --brass: #b8954a;
  --brass-deep: #9a7a38;
  --orange: #f15a22;
  --orange-deep: #d14e1e;
  --orange-soft: rgba(241, 90, 34, 0.12);
  --gold: var(--brass);
  --gold-deep: var(--brass-deep);
  --muted: #6f675e;
  --line: #e2d9cc;
  --danger: #b42318;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px rgba(44, 41, 38, 0.10);
  --font-serif: "Noto Serif Display", "Iowan Old Style", Georgia, serif;
  --font-sans: "Public Sans", "Segoe UI", sans-serif;

  min-height: 100dvh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(800px 380px at 100% -8%, rgba(44, 41, 38, 0.08), transparent 52%),
    radial-gradient(640px 320px at 0% 0%, rgba(184, 149, 74, 0.14), transparent 48%),
    linear-gradient(180deg, var(--paper) 0%, #ebe4d8 100%);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.45;
  overscroll-behavior: contain;
  touch-action: manipulation;
}

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

.cope a {
  color: inherit;
}

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

.cope-skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 20;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
}

.cope-skip:focus {
  top: 0.75rem;
}

.cope.is-app .cope-skip {
  display: none;
}

.cope-shell {
  width: min(100% - 1.5rem, 480px);
  margin: 0 auto;
  padding: 1.5rem 0 2.75rem;
}

.cope-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 2rem;
  padding: 0.4rem 0 1.6rem;
  border-bottom: 1px solid var(--brass);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.cope-brand-mark,
.cope-brand img,
.cope-brand svg {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--cream);
  box-shadow: 0 16px 32px rgba(44, 41, 38, 0.12);
}

.cope-brand-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.cope-brand-name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 11vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.cope-brand-tag {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cope-card {
  background: var(--cream);
  border: 1px solid rgba(44, 41, 38, 0.06);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.75rem 1.35rem 1.5rem;
}

.cope-kicker {
  margin: 0 0 0.35rem;
  color: var(--brass-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cope-place {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
}

.cope-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 7vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cope-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cope-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.cope-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.cope-hint {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.cope-dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 132px;
  padding: 1.15rem;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-sm);
  background: #fffdf8;
  text-align: center;
  cursor: pointer;
  transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.cope-dropzone:hover,
.cope-dropzone.is-active {
  border-color: var(--orange);
  background: var(--orange-soft);
}

.cope-dropzone.has-file {
  border-style: solid;
  border-color: rgba(120, 53, 15, 0.28);
  background: #fff;
  align-items: flex-start;
  text-align: left;
}

.cope-dropzone.is-busy {
  opacity: 0.78;
}

.cope-dropzone-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}

.cope-drop-icon {
  width: 56px;
  height: 56px;
  color: var(--ink);
}

.cope-drop-title {
  font-weight: 600;
}

.cope-file-name {
  font-weight: 600;
  word-break: break-word;
}

.cope-file-meta {
  color: var(--muted);
  font-size: 0.8rem;
}

.cope-stepper {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: stretch;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.cope-stepper button {
  min-height: 52px;
  min-width: 52px;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 200ms ease;
}

.cope-stepper button:hover {
  background: #efe4d0;
}

.cope-stepper input {
  width: 100%;
  min-height: 52px;
  border: 0;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
}

.cope-stepper input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--orange);
}

.cope-input {
  width: 100%;
  max-width: 220px;
  min-height: 48px;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font-size: 1.05rem;
}

.cope-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.cope-summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.25rem 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(28, 20, 16, 0.04);
  font-size: 0.92rem;
}

.cope-summary strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.cope-inline-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.86rem;
}

.cope-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.15rem 0 0.25rem;
}

.cope-fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-height: 64px;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(28, 20, 16, 0.04);
}

.cope-fact-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.cope-fact strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.2;
}

.cope-order {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-bottom: 0.25rem;
}

.cope-order > form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cope-checkout {
  position: sticky;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 -0.15rem;
  padding: 0.9rem 0.95rem max(0.9rem, env(safe-area-inset-bottom));
  border: 1px solid rgba(44, 41, 38, 0.06);
  border-radius: 20px;
  background: rgba(247, 242, 234, 0.96);
  box-shadow: 0 -12px 28px rgba(44, 41, 38, 0.08);
  backdrop-filter: blur(10px);
}

.cope-checkout-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.cope-checkout-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.cope-checkout-meta {
  margin: 0.2rem 0 0;
  color: var(--ink);
  font-size: 0.88rem;
}

.cope-checkout-sum {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.cope-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cope-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.75rem 1.1rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  touch-action: manipulation;
  transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.cope-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cope-btn-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(241, 90, 34, 0.22);
}

.cope-btn-primary:hover:not(:disabled) {
  box-shadow: 0 10px 24px rgba(241, 90, 34, 0.32);
}

.cope-btn-ghost {
  background: transparent;
  color: var(--muted);
}

.cope-btn-ghost:hover {
  color: var(--ink);
  background: rgba(28, 20, 16, 0.04);
}

.cope-terminal-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cope-terminal {
  display: block;
  padding: 1.05rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.cope-terminal:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 18px rgba(28, 20, 16, 0.06);
}

.cope-terminal-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.cope-terminal-place {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.cope-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 0.75rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(44, 41, 38, 0.07);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cope .cg-busy-default-wrapper {
  border-radius: var(--radius);
}

.cope .modal-content {
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.cope .modal-header,
.cope .modal-footer {
  border: 0;
  background: var(--cream);
}

.cope .modal-title {
  font-family: var(--font-serif);
}

.cope .btn-danger {
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 1.2rem;
}

.cope.is-landing {
  min-height: 100dvh;
  overflow: auto;
}

.cope.is-app {
  overflow: auto;
}

.cope.is-app .cope-stage {
  width: min(100% - 1.25rem, 440px);
  margin: 0 auto;
  padding: 0.75rem 0 max(1.25rem, env(safe-area-inset-bottom));
}

.cope-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem 0.15rem;
}

.kope-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.kope-lockup-mark {
  display: block;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.kope-lockup-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.kope-lockup-name {
  font-family: var(--font-serif);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.kope-lockup-tag {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
}

.kope-lockup-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 0.45em;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.kope-lockup:hover .kope-lockup-tag {
  color: var(--ink);
}

.kope-lockup.is-static {
  cursor: default;
}

.kope-lockup.is-static:hover .kope-lockup-tag {
  color: var(--muted);
}

.kope-lockup-tag,
.kope-lockup:hover .kope-lockup-tag {
  transition: color 200ms ease;
}

.kope-lockup.is-compact {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
}

.kope-lockup.is-compact .kope-lockup-mark {
  height: 2.75rem;
}

.kope-lockup.is-compact .kope-lockup-name {
  font-size: 1.42rem;
}

.kope-lockup.is-compact .kope-lockup-tag {
  margin-top: 0.28rem;
}

.kope-lockup.is-hero {
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  margin: 0 0 0.55rem;
}

.kope-lockup.is-hero .kope-lockup-mark {
  height: 7.6rem;
}

.kope-lockup.is-hero .kope-lockup-text {
  align-items: center;
  text-align: center;
}

.kope-lockup.is-hero .kope-lockup-name {
  font-size: clamp(2.35rem, 9vw, 3.05rem);
}

.kope-lockup.is-hero .kope-lockup-tag {
  margin-top: 0.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.land {
  --orange: #f15a22;
  --orange-soft: rgba(241, 90, 34, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0.65rem 1rem calc(1.35rem + env(safe-area-inset-bottom));
}

.land-sheet {
  width: min(100%, 34rem);
  margin: 0 auto;
  text-align: center;
}

.land-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.15rem;
  margin: 0 0 1.15rem;
}

.land-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.4rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color 200ms ease, box-shadow 200ms ease;
}

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

.land-nav a.is-active {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--orange);
}

.land-promise {
  margin: 0 0 1.45rem;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.land-lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.45;
}

.land-steps {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.05rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.land-steps li {
  display: grid;
  grid-template-columns: 2.15rem 1fr;
  gap: 0.7rem;
  align-items: center;
}

.land-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.land-steps strong {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.28;
}

.land-notes {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  text-align: left;
}

.land-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.land-vpn {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 12px 0;
  background: var(--orange-soft);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.land-place {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.land-place-head {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.land-map-stage {
  position: relative;
  overflow: hidden;
  min-height: 18.5rem;
  border: 1px solid rgba(44, 41, 38, 0.08);
  border-radius: 16px;
  background: #e8e2d6;
}

.land-map,
.land-map iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.cope.is-site {
  overflow: auto;
}

.site {
  width: min(100% - 2rem, 38rem);
  margin: 0 auto;
  padding: 0.65rem 0 calc(2rem + env(safe-area-inset-bottom));
  text-align: center;
}

.site-article {
  text-align: left;
}

.site-title {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.site-lead {
  margin: 0 0 1.45rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-article > .site-lead {
  margin-bottom: 1.45rem;
}

.site-block {
  margin: 0 0 1.6rem;
}

.site-block:last-child {
  margin-bottom: 0;
}

.site-block h2 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-article p,
.site-block p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-block p:last-child {
  margin-bottom: 0;
}

.site-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11rem;
  padding: 1.25rem;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: center;
}

.site-inline {
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  cursor: pointer;
}

.site-inline:hover {
  color: var(--orange-deep);
}

.site-quiet {
  color: var(--muted);
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  text-decoration: none;
  border-bottom: 0;
  cursor: pointer;
  transition: color 180ms ease;
}

.site-quiet:hover {
  color: var(--ink);
}

.site-footnote {
  margin: 1.05rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-article > .site-footnote {
  margin: 1.05rem 0 0;
}

.site-back:focus-visible,
.site-quiet:focus-visible,
.cope-legal:focus-visible,
.land-nav a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.site-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-list li {
  margin: 0 0 0.85rem;
  padding-left: 1rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-list li:last-child {
  margin-bottom: 0;
}

.site-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--orange);
  transform: rotate(45deg);
}

.site-list strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
  font-weight: 650;
}

.site-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease;
}

.site-back:hover {
  color: var(--ink);
}

.site-back.is-start {
  margin-top: 0.05rem;
  margin-bottom: 0.55rem;
}

.site-form {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-input {
  max-width: none;
}

.site-textarea {
  min-height: 8.5rem;
  padding: 0.75rem 0.9rem;
  resize: vertical;
  line-height: 1.45;
}

.site-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0.45rem 0 0.15rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  cursor: pointer;
}

.site-consent input {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: var(--orange);
  cursor: pointer;
}

.site-submit {
  align-self: flex-start;
  margin-top: 0.55rem;
  min-height: 2.5rem;
  padding: 0.4rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
}

.site-submit:hover:not(:disabled) {
  background: var(--orange-deep);
  color: #fff;
}

.site-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cope-legal {
  display: block;
  margin: 0;
  padding: 0.05rem 0.2rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-decoration: none;
  opacity: 0.62;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.cope-legal:hover {
  opacity: 1;
  color: var(--ink);
}

.cope-checkout .cope-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: -0.4rem;
}

.policy {
  text-align: left;
}

.site.is-policy .kope-lockup.is-compact {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 0.15rem;
}

.site.is-policy .site-back.is-start {
  display: flex;
  justify-content: center;
  width: 100%;
}

.site.is-policy .site-title {
  font-size: clamp(1.32rem, 4.6vw, 1.68rem);
  line-height: 1.22;
  overflow-wrap: break-word;
}

.site.is-policy .site-article > .site-lead {
  margin-bottom: 1.2rem;
}

.site.is-policy .site-block {
  margin-bottom: 1.35rem;
}

.policy .site-list li::before {
  background: var(--ink);
  transform: none;
  width: 4px;
  height: 4px;
  border-radius: 0;
}

.policy .site-block p {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.5rem;
  overflow-wrap: break-word;
}

.policy .site-block p:last-child {
  margin-bottom: 0;
}

.site-thanks {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}


@media (min-width: 900px) {
  .cope.is-landing {
    height: 100dvh;
    overflow: hidden;
  }

  .land {
    display: grid;
    grid-template-columns: minmax(22rem, 27rem) minmax(0, 1fr);
    align-items: stretch;
    gap: 2rem 2.25rem;
    height: 100dvh;
    min-height: 0;
    padding: 1.1rem 1.5rem 1.25rem;
  }

  .land-sheet {
    width: 100%;
    min-height: 0;
    margin: 0;
    overflow: auto;
  }

  .land .kope-lockup.is-hero {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-align: left;
    margin-bottom: 1.05rem;
  }

  .land .kope-lockup.is-hero .kope-lockup-mark {
    height: 6.75rem;
  }

  .land .kope-lockup.is-hero .kope-lockup-text {
    align-items: flex-start;
    text-align: left;
  }

  .land .kope-lockup.is-hero .kope-lockup-name {
    font-size: 2.7rem;
  }

  .land .land-nav {
    justify-content: flex-start;
    margin-bottom: 1.2rem;
  }

  .land .land-nav a:first-child {
    padding-left: 0;
  }

  .land-promise,
  .land-lead,
  .land-notes,
  .land-vpn {
    text-align: left;
  }

  .cope.is-site .site {
    padding-top: 1.1rem;
  }

  .site .land-nav {
    justify-content: center;
  }

  .site .land-nav a {
    padding-left: 0.45rem;
  }

  .land-steps {
    grid-template-columns: 1fr;
  }

  .land-place {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .land-map-stage {
    flex: 1 1 auto;
    min-height: 0;
  }

  .cope.is-app .cope-stage {
    width: min(100% - 2rem, 480px);
    padding-top: 0.65rem;
  }

  .kope-lockup.is-compact .kope-lockup-mark {
    height: 2.85rem;
  }

  .kope-lockup.is-compact .kope-lockup-name {
    font-size: 1.55rem;
  }

  .cope-stepper {
    max-width: 280px;
  }

  .cope-checkout {
    margin: 0;
  }
}

@media (min-width: 900px) and (max-height: 760px) {
  .land .kope-lockup.is-hero .kope-lockup-mark {
    height: 5.4rem;
  }

  .land .kope-lockup.is-hero .kope-lockup-name {
    font-size: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cope *,
  .cope *::before,
  .cope *::after {
    transition: none !important;
  }
}
