:root {
  --brand: #00cc33;
  --brand-bright: #22e653;
  --brand-dark: #009e27;
  --bg: #0c1527;
  --bg-deep: #07101e;
  --surface: rgba(19, 32, 54, 0.82);
  --surface-solid: #111e33;
  --surface-soft: #17263e;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(0, 204, 51, 0.34);
  --text: #ffffff;
  --muted: #9ba9bd;
  --muted-strong: #c3cedd;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 204, 51, 0.11), transparent 30%),
    radial-gradient(circle at 84% 34%, rgba(58, 103, 255, 0.12), transparent 31%),
    linear-gradient(180deg, #0c1527 0%, #08111f 55%, #07101d 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(110px);
  opacity: 0.18;
}

.ambient--one {
  top: 80px;
  left: -240px;
  background: var(--brand);
}

.ambient--two {
  top: 260px;
  right: -260px;
  background: #3663ff;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(7, 16, 30, 0.58);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: min(246px, 48vw);
  height: auto;
  object-fit: contain;
}

.header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.035);
  font-size: 14px;
  font-weight: 750;
  transition: 180ms ease;
}

.header-login:hover {
  color: #fff;
  border-color: rgba(0, 204, 51, 0.45);
  background: rgba(0, 204, 51, 0.08);
  transform: translateY(-1px);
}

.header-login svg {
  width: 18px;
  height: 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: 54px;
  min-height: calc(710px - var(--header-height));
  padding-top: 70px;
  padding-bottom: 78px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(0, 204, 51, 0.22);
  border-radius: 999px;
  color: #bff6cc;
  background: rgba(0, 204, 51, 0.07);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.105em;
}

.eyebrow-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(0, 204, 51, 0.09), 0 0 20px rgba(0, 204, 51, 0.72);
}

.hero h1 {
  max-width: 700px;
  margin: 23px 0 20px;
  font-size: clamp(42px, 5.05vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--brand);
  text-shadow: 0 0 34px rgba(0, 204, 51, 0.16);
}

.hero-text {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.62;
}

.detected-device {
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px 8px 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 700;
}

.device-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--brand);
  background: rgba(0, 204, 51, 0.11);
}

.device-icon svg {
  width: 16px;
  height: 16px;
}

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

.button {
  min-height: 56px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
}

.button--primary {
  color: #06110a;
  background: linear-gradient(180deg, var(--brand-bright), var(--brand));
  box-shadow: 0 14px 34px rgba(0, 204, 51, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button--primary:hover {
  box-shadow: 0 18px 42px rgba(0, 204, 51, 0.29), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button--secondary {
  color: #eef5ff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.07);
}

.micro-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: #75859c;
  font-size: 12px;
  font-weight: 650;
}

.micro-copy svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
}

.hero-visual {
  position: relative;
  min-height: 532px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 204, 51, 0.21), rgba(0, 204, 51, 0.03) 48%, transparent 70%);
  filter: blur(6px);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 50%;
}

.visual-orbit--one {
  width: 440px;
  height: 440px;
}

.visual-orbit--two {
  width: 520px;
  height: 520px;
  border-style: dashed;
  opacity: 0.55;
  animation: orbit 34s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.phone {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 518px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 45px;
  background: linear-gradient(145deg, #2d3a4c, #060c15 48%, #1c293a);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.56), inset 0 1px 1px rgba(255, 255, 255, 0.24), 0 0 0 7px rgba(255, 255, 255, 0.018);
  transform: rotate(3.5deg);
}

.phone::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 44px;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 17%, transparent 76%, rgba(255, 255, 255, 0.06));
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 50%;
  width: 78px;
  height: 23px;
  border-radius: 999px;
  background: #03070d;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 26%, rgba(0, 204, 51, 0.18), transparent 34%),
    linear-gradient(180deg, #111d31 0%, #09121f 100%);
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(black, transparent 82%);
}

.phone-status {
  position: relative;
  z-index: 2;
  height: 50px;
  padding: 14px 18px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-icons svg:nth-child(1) { width: 12px; height: 12px; }
.status-icons svg:nth-child(2) { width: 13px; height: 13px; }
.status-icons svg:nth-child(3) { width: 18px; height: 10px; }

.app-preview {
  position: relative;
  z-index: 2;
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
}

.app-icon-wrap {
  width: 132px;
  height: 132px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 48px rgba(0, 204, 51, 0.13);
}

.app-icon-wrap img {
  width: 100%;
  height: 100%;
}

.app-name {
  margin: 21px 0 4px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.app-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.app-loading {
  width: 132px;
  height: 5px;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.app-loading span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  box-shadow: 0 0 14px rgba(0, 204, 51, 0.62);
}

.phone-home-indicator {
  position: absolute;
  z-index: 3;
  bottom: 10px;
  left: 50%;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
}

.floating-badge {
  position: absolute;
  z-index: 4;
  min-width: 170px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: rgba(15, 28, 47, 0.82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floating-badge--download {
  top: 116px;
  left: -12px;
  transform: rotate(-3deg);
}

.floating-badge--ios {
  right: -14px;
  bottom: 100px;
  transform: rotate(2deg);
}

.floating-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #041008;
  background: var(--brand);
}

.floating-icon svg {
  width: 20px;
  height: 20px;
}

.floating-badge strong,
.floating-badge small {
  display: block;
}

.floating-badge strong {
  font-size: 13px;
  line-height: 1.25;
}

.floating-badge small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.install-section {
  padding-top: 54px;
  padding-bottom: 80px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.install-card {
  position: relative;
  min-height: 476px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 45%),
    rgba(17, 30, 51, 0.72);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  transition: 220ms ease;
}

.install-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -100px;
  top: -125px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.07;
  filter: blur(4px);
}

.install-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

html.is-android .install-card--android,
html.is-ios .install-card--ios {
  border-color: var(--line-strong);
  box-shadow: 0 24px 70px rgba(0, 204, 51, 0.09);
}

html.is-android .install-card--android .recommended,
html.is-ios .install-card--ios .recommended {
  color: #06110a;
  border-color: transparent;
  background: var(--brand);
}

.card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.platform-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--brand);
  background: rgba(0, 204, 51, 0.07);
}

.platform-mark svg {
  width: 27px;
  height: 27px;
}

.recommended {
  min-height: 27px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.install-card h3 {
  position: relative;
  z-index: 2;
  margin: 25px 0 9px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.install-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.compact-steps {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
  margin: 23px 0 25px;
  padding: 0;
  list-style: none;
}

.compact-steps li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 38px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.compact-steps li span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 204, 51, 0.24);
  border-radius: 9px;
  color: var(--brand);
  background: rgba(0, 204, 51, 0.06);
  font-size: 11px;
  font-weight: 900;
}

.card-button {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: 180ms ease;
}

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

.card-button svg {
  width: 20px;
  height: 20px;
}

.card-button--primary {
  color: #06110a;
  background: linear-gradient(180deg, var(--brand-bright), var(--brand));
  box-shadow: 0 13px 30px rgba(0, 204, 51, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.27);
}

.card-note {
  margin-top: 12px !important;
  color: #718096 !important;
  text-align: center;
  font-size: 11px !important;
}

.card-note strong {
  color: #9db0c8;
}

.info-strip {
  margin-bottom: 82px;
  min-height: 82px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.info-strip > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.info-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--brand);
  background: rgba(0, 204, 51, 0.08);
}

.info-icon svg {
  width: 21px;
  height: 21px;
}

.info-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.info-strip p strong {
  color: var(--muted-strong);
}

.info-strip > a {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
}

.info-strip > a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(4, 10, 19, 0.45);
}

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

.footer-inner img {
  width: 154px;
  height: auto;
  opacity: 0.88;
}

.footer-inner p {
  margin: 0;
  color: #66768d;
  font-size: 12px;
  font-weight: 650;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  align-items: end;
  visibility: hidden;
  opacity: 0;
  transition: visibility 220ms ease, opacity 220ms ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 13, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ios-sheet {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 24px));
  max-height: min(92vh, 940px);
  margin: 0 auto 12px;
  padding: 18px 24px 24px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #111d30;
  box-shadow: 0 -24px 85px rgba(0, 0, 0, 0.58);
  transform: translateY(34px) scale(0.985);
  transition: transform 250ms cubic-bezier(.2, .75, .22, 1);
}

.modal.is-open .ios-sheet {
  transform: translateY(0) scale(1);
}

.sheet-handle {
  width: 42px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.19);
}

.sheet-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.sheet-close svg {
  width: 18px;
  height: 18px;
}

.sheet-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 46px;
}

.sheet-app-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 12px 27px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.sheet-app-icon img {
  width: 100%;
  height: 100%;
}

.sheet-heading span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.sheet-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(22px, 5vw, 31px);
  letter-spacing: -0.035em;
}

.ios-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.ios-steps article {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.028);
}

.step-visual {
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 13px;
  color: var(--brand);
  background: #0b1525;
}

.safari-compass svg,
.share-symbol svg {
  width: 48px;
  height: 48px;
}

.step-copy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 12px;
}

.step-copy > span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #06110a;
  background: var(--brand);
  font-size: 10px;
  font-weight: 900;
}

.step-copy p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.step-copy strong {
  color: var(--muted-strong);
}

.add-home-visual {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 9px;
  padding: 12px;
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 750;
}

.mini-app-icon {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 0;
}

.mini-app-icon img {
  width: 100%;
  height: 100%;
}

.add-home-visual > svg {
  width: 17px;
  height: 17px;
  color: #718096;
}

.home-preview {
  grid-template-columns: 1fr auto;
  padding: 12px;
}

.home-preview > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.home-preview img {
  width: 48px;
  height: 48px;
  border-radius: 0;
}

.home-preview small {
  color: var(--muted-strong);
  font-size: 8px;
  font-weight: 700;
}

.add-pill {
  min-height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #06110a;
  background: var(--brand);
  font-size: 10px;
  font-weight: 900;
}

.redirect-note {
  margin-top: 14px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 204, 51, 0.2);
  border-radius: 14px;
  color: #a6b5ca;
  background: rgba(0, 204, 51, 0.055);
  font-size: 12px;
  line-height: 1.5;
}

.redirect-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--brand);
}

.redirect-note strong {
  color: #d9f5df;
}

.sheet-confirm {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border: 0;
  border-radius: 14px;
  color: #06110a;
  background: var(--brand);
  cursor: pointer;
  font-weight: 900;
}

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  max-width: 360px;
  padding: 13px 15px;
  border-radius: 12px;
  color: #fff;
  background: #b42318;
  font-size: 13px;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr 390px;
    gap: 30px;
  }

  .floating-badge--download { left: -34px; }
  .floating-badge--ios { right: -28px; }
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 58px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }

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

  html.is-ios .install-card--ios,
  html.is-android .install-card--android {
    order: -1;
  }

  .install-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: min(184px, 49vw);
  }

  .header-login {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .header-login svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    gap: 32px;
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .hero h1 {
    margin-top: 19px;
    font-size: clamp(39px, 12.3vw, 56px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .micro-copy {
    text-align: left;
  }

  .hero-visual {
    min-height: 458px;
    transform: scale(0.9);
    margin-top: -24px;
    margin-bottom: -24px;
  }

  .phone {
    width: 226px;
    height: 454px;
    border-radius: 40px;
  }

  .phone-screen {
    border-radius: 34px;
  }

  .app-icon-wrap {
    width: 112px;
    height: 112px;
    border-radius: 0;
  }

  .floating-badge {
    min-width: 148px;
    padding: 9px 10px;
  }

  .floating-badge--download {
    top: 102px;
    left: -7px;
  }

  .floating-badge--ios {
    right: -5px;
    bottom: 82px;
  }

  .floating-icon {
    width: 34px;
    height: 34px;
  }

  .visual-orbit--one {
    width: 370px;
    height: 370px;
  }

  .visual-orbit--two {
    width: 430px;
    height: 430px;
  }

  .install-section {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .section-heading {
    text-align: center;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .install-card {
    padding: 22px;
    border-radius: 21px;
  }

  .install-card h3 {
    font-size: 24px;
  }

  .info-strip {
    margin-bottom: 54px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    min-height: 132px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .ios-sheet {
    width: calc(100% - 12px);
    margin-bottom: 6px;
    padding: 12px 14px 14px;
    border-radius: 24px;
  }

  .sheet-heading {
    padding-right: 34px;
  }

  .sheet-close {
    top: 14px;
    right: 14px;
  }

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

  .ios-steps article {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .step-visual {
    min-height: 76px;
  }

  .step-copy {
    margin-top: 0;
  }
}

@media (max-width: 420px) {
  .header-login {
    width: 40px;
    padding: 0;
    font-size: 0;
  }

  .header-login svg {
    width: 18px;
    height: 18px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero-visual {
    transform: scale(0.82);
    margin-top: -48px;
    margin-bottom: -48px;
  }

  .install-card {
    padding: 19px;
  }

  .ios-steps article {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .add-home-visual {
    grid-template-columns: auto 1fr;
  }

  .add-home-visual > svg {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
