:root {
  color-scheme: light;
  --ink: #112231;
  --ink-soft: #314657;
  --muted: #667b8c;
  --muted-light: #93a3b0;
  --paper: #ffffff;
  --paper-blue: #f5faff;
  --panel: #ffffff;
  --line: #dce8f0;
  --blue: #2d9cdb;
  --blue-dark: #1e7fb8;
  --blue-soft: #e8f5fd;
  --blue-pale: #f2f9fe;
  --pink: #eb5c8d;
  --pink-soft: #fdebf1;
  --mint: #68c7c2;
  --mint-soft: #e6f7f5;
  --purple: #9b6dd6;
  --shadow: 0 24px 60px rgba(30, 92, 132, 0.13);
  --shadow-soft: 0 12px 34px rgba(41, 85, 113, 0.09);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(220, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: min(1220px, calc(100% - 48px));
  height: 76px;
  margin-inline: auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: block;
  width: 152px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 32px;
}

.nav-links a,
.footer-links a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 9px 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(45, 156, 219, 0.22);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 11px 25px rgba(45, 156, 219, 0.28);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(244, 250, 255, 0.98), rgba(255, 255, 255, 0.98) 52%, rgba(252, 247, 250, 0.95)),
    var(--paper-blue);
}

.hero::after {
  position: absolute;
  right: 5%;
  bottom: -150px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(45, 156, 219, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 710px;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(500px, 1fr) minmax(0, 1fr);
  padding-block: 64px 76px;
}

.hero-copy {
  padding-bottom: 18px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.08em;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px var(--mint-soft);
}

.hero h1 {
  margin: 24px 0 22px;
  font-size: clamp(2.6rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.9;
}

.store-links {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 12px;
}

.store-link {
  display: block;
  border-radius: 9px;
  outline-offset: 4px;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-link:hover,
.store-link:focus-visible {
  filter: brightness(1.07);
  transform: translateY(-2px);
}

.store-link img {
  width: auto;
  height: 51px;
  object-fit: contain;
}

.hero-points {
  display: flex;
  margin: 24px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 15px;
}

.hero-points li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.hero-visual {
  position: relative;
  padding: 48px 0;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 231, 241, 0.95);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 40px 90px rgba(29, 91, 132, 0.16);
  transform: rotate(1.5deg);
}

.hero-card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 10px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  height: auto;
}

.float-note {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 196px;
  padding: 13px 16px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(220, 232, 240, 0.95);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 35px rgba(39, 82, 110, 0.13);
  backdrop-filter: blur(12px);
}

.float-note-balance {
  top: 13px;
  right: 7%;
}

.float-note-sync {
  bottom: 3px;
  left: 2%;
}

.float-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  font-weight: 800;
}

.float-icon-blue {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.float-icon-mint {
  color: #278f89;
  background: var(--mint-soft);
  font-size: 1.25rem;
}

.float-note span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.float-note small {
  color: var(--muted);
  font-size: 0.68rem;
}

.float-note strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  top: 45px;
  right: 18%;
  width: 250px;
  height: 250px;
  background: rgba(104, 199, 194, 0.12);
}

.hero-glow-two {
  bottom: -100px;
  left: -50px;
  width: 330px;
  height: 330px;
  background: rgba(45, 156, 219, 0.1);
}

.intro {
  padding: 128px 0 136px;
  background: #fff;
}

.intro-shell {
  text-align: center;
}

.intro h2,
.section-heading h2,
.feature-grid-heading h2,
.how-heading h2,
.invite-copy h2,
.faq-heading h2,
.download-shell h2 {
  margin: 14px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.intro .section-lead {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}

.mobile-break {
  display: none;
}

.intro-cards {
  display: grid;
  margin-top: 66px;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
}

.intro-cards article {
  padding: 32px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.mini-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 16px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 1.1rem;
  font-weight: 850;
}

.mini-icon-wallet {
  position: relative;
}

.mini-icon-wallet::before {
  width: 22px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.mini-icon-wallet::after {
  position: absolute;
  width: 8px;
  height: 6px;
  border: 2px solid currentColor;
  border-right: 0;
  border-radius: 3px 0 0 3px;
  content: "";
  transform: translateX(8px);
}

.mini-icon-split {
  color: #c34371;
  background: var(--pink-soft);
}

.mini-icon-check {
  color: #278f89;
  background: var(--mint-soft);
}

.intro-cards h3 {
  margin: 20px 0 8px;
  font-size: 1.15rem;
  line-height: 1.45;
}

.intro-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.screens-section {
  overflow: hidden;
  padding: 126px 0 146px;
  background:
    radial-gradient(circle at 88% 5%, rgba(104, 199, 194, 0.12), transparent 24%),
    linear-gradient(180deg, #f4faff, #edf7fd);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1fr 0.72fr;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.95;
}

.phone-gallery {
  display: grid;
  margin-top: 78px;
  align-items: start;
  gap: 34px;
  grid-template-columns: repeat(3, 1fr);
}

.phone-feature {
  min-width: 0;
}

.phone-feature-offset {
  margin-top: 64px;
}

.feature-label {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
  gap: 14px;
}

.feature-label > span {
  padding-top: 4px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-label p {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 750;
  line-height: 1.5;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  border: 9px solid #fff;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 30px 65px rgba(35, 91, 127, 0.17);
}

.phone-frame::before {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 50%;
  width: 82px;
  height: 22px;
  border-radius: 999px;
  background: #0b1219;
  content: "";
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 33px;
}

.feature-grid-section {
  padding: 136px 0;
  background: #fff;
}

.feature-grid-heading {
  max-width: 660px;
  margin-bottom: 62px;
}

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

.feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper-blue);
}

.feature-card-wide {
  display: grid;
  min-height: 470px;
  align-items: center;
  gap: 36px;
  grid-column: 1 / -1;
  grid-template-columns: 0.88fr 1.12fr;
}

.card-number {
  display: inline-flex;
  width: 38px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(45, 112, 151, 0.08);
}

.feature-card h3 {
  margin: 20px 0 14px;
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.feature-card p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.9;
}

.split-card {
  background:
    radial-gradient(circle at 90% 20%, rgba(104, 199, 194, 0.14), transparent 30%),
    #f2f9fe;
}

.split-options {
  display: flex;
  margin-top: 28px;
  padding: 5px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.split-options span {
  flex: 1;
  padding: 9px 7px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 750;
  text-align: center;
}

.split-options .active {
  color: #fff;
  background: var(--blue);
}

.balance-visual {
  padding: 30px;
  border: 1px solid rgba(218, 232, 241, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.balance-visual > p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.balance-visual > strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1.2;
  text-align: right;
}

.balance-line {
  display: grid;
  margin-top: 24px;
  align-items: center;
  gap: 12px;
  grid-template-columns: 1fr 36px 1fr;
}

.balance-line span {
  padding: 18px 15px;
  border-radius: 15px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
}

.balance-line span:last-child {
  color: var(--pink);
  background: var(--pink-soft);
}

.balance-line small {
  display: block;
  margin-bottom: 2px;
  font-size: 0.68rem;
  font-weight: 650;
}

.balance-line i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
}

.invite-card {
  background:
    radial-gradient(circle at 80% 75%, rgba(235, 92, 141, 0.12), transparent 35%),
    #fff8fb;
}

.invite-visual {
  position: absolute;
  right: 38px;
  bottom: 43px;
  left: 38px;
  display: grid;
  align-items: center;
  grid-template-columns: 76px 1fr 76px;
}

.avatar {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 8px solid #fff;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 30px rgba(52, 87, 110, 0.12);
  font-size: 1.1rem;
  font-weight: 800;
}

.avatar-you {
  background: linear-gradient(145deg, #52aee2, #2d9cdb);
}

.avatar-partner {
  background: linear-gradient(145deg, #f27ca5, #eb5c8d);
}

.link-line {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 42px 1fr;
}

.link-line span {
  height: 2px;
  background: repeating-linear-gradient(90deg, #9dcadd 0 7px, transparent 7px 12px);
}

.link-line i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 7px 20px rgba(45, 112, 151, 0.12);
  font-style: normal;
  font-weight: 800;
}

.recurring-card {
  background:
    radial-gradient(circle at 10% 90%, rgba(104, 199, 194, 0.13), transparent 34%),
    #f5fcfb;
}

.recurring-list {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  display: grid;
  gap: 10px;
}

.recurring-list > div {
  display: grid;
  padding: 15px 17px;
  align-items: center;
  gap: 12px;
  border: 1px solid #e0eceb;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(45, 92, 104, 0.06);
  grid-template-columns: 42px 1fr auto;
}

.bill-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  color: #278f89;
  background: var(--mint-soft);
  font-size: 1rem;
  font-weight: 800;
}

.recurring-list p {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 750;
  line-height: 1.35;
}

.recurring-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted-light);
  font-size: 0.68rem;
  font-weight: 550;
}

.recurring-list strong {
  font-size: 0.9rem;
}

.theme-card {
  max-height: 570px;
  color: #edf4f8;
  border-color: #263746;
  background:
    radial-gradient(circle at 80% 10%, rgba(79, 176, 232, 0.18), transparent 32%),
    #0e151c;
}

.theme-card .card-number {
  color: #4fb0e8;
  background: #192631;
}

.theme-card p {
  color: #a6b4c0;
}

.theme-tags {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 9px;
}

.theme-tags span {
  padding: 9px 13px;
  border: 1px solid #2a3a47;
  border-radius: 999px;
  color: #c9d5dd;
  background: #17222c;
  font-size: 0.73rem;
  font-weight: 700;
}

.dark-phone {
  align-self: start;
  width: 56%;
  max-width: 280px;
  margin: 52px auto 0;
  overflow: hidden;
  border: 7px solid #253745;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -10px 50px rgba(38, 134, 189, 0.16);
}

.dark-phone img {
  width: 100%;
  height: auto;
}

.how-section {
  padding: 132px 0;
  background: #f7fbfe;
}

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

.how-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.steps {
  position: relative;
  display: grid;
  margin: 72px 0 0;
  padding: 0;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.steps::before {
  position: absolute;
  top: 75px;
  right: 18%;
  left: 18%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #b9d8e9 0 8px, transparent 8px 14px);
  content: "";
}

.steps li {
  position: relative;
  z-index: 1;
  padding: 0 28px;
  text-align: center;
}

.step-number {
  display: block;
  width: max-content;
  margin: 0 auto 13px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
}

.step-icon {
  display: grid;
  width: 88px;
  height: 88px;
  margin-inline: auto;
  place-items: center;
  border: 9px solid #f7fbfe;
  border-radius: 29px;
  color: var(--blue);
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 1.8rem;
  font-weight: 500;
}

.step-record {
  color: var(--pink);
}

.step-invite {
  color: #278f89;
}

.steps h3 {
  margin: 24px 0 8px;
  font-size: 1.15rem;
}

.steps p {
  max-width: 270px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.8;
}

.invite-showcase {
  overflow: hidden;
  padding: 136px 0 0;
  background: #fff;
}

.invite-showcase-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 0.86fr 1.14fr;
}

.invite-copy {
  padding-bottom: 132px;
}

.invite-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 2;
}

.invite-copy ul {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
  list-style: none;
}

.invite-copy li span {
  display: inline-grid;
  width: 23px;
  height: 23px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  color: #278f89;
  background: var(--mint-soft);
  font-size: 0.72rem;
}

.invite-phone-wrap {
  position: relative;
  align-self: end;
  min-height: 670px;
}

.invite-phone-halo {
  position: absolute;
  right: 0;
  bottom: -80px;
  left: 0;
  height: 620px;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(circle at 48% 40%, rgba(255, 255, 255, 0.85) 0 13%, transparent 14%),
    linear-gradient(145deg, var(--blue-soft), #eefbfa 60%, #fff7fa);
  transform: scaleX(1.12);
}

.invite-phone {
  position: relative;
  z-index: 2;
  width: 330px;
  margin: 0 auto -90px;
  transform: rotate(2deg);
}

.faq-section {
  position: relative;
  z-index: 4;
  padding: 138px 0;
  border-top: 1px solid var(--line);
  background: #f8fbfd;
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 110px;
  grid-template-columns: 0.68fr 1.32fr;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading > p:last-child {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-heading a {
  color: var(--blue-dark);
  font-weight: 700;
  text-underline-offset: 0.2em;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 46px 25px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: -4px 46px 25px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: 126px 0;
  background:
    linear-gradient(135deg, #eaf6fd, #f3fbfa 52%, #fff6fa);
}

.download-shell {
  position: relative;
  z-index: 2;
  text-align: center;
}

.download-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  border-radius: 24px;
  box-shadow: 0 16px 35px rgba(41, 114, 156, 0.18);
}

.download-shell > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--muted);
}

.store-links-center {
  justify-content: center;
}

.download-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.download-orb-one {
  top: -140px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: rgba(45, 156, 219, 0.1);
}

.download-orb-two {
  right: -90px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  background: rgba(235, 92, 141, 0.09);
}

.site-footer {
  padding: 64px 0 30px;
  color: #d8e4eb;
  background: #102331;
}

.footer-grid {
  display: flex;
  padding-bottom: 48px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand img {
  width: 148px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.93;
}

.footer-brand p {
  margin: 13px 0 0;
  color: #8fa5b4;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  padding-top: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 28px;
}

.footer-links a {
  color: #b9cad5;
  font-size: 0.82rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  padding-top: 26px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(219, 232, 240, 0.12);
  color: #78909f;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

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

  .nav-cta {
    margin-left: auto;
  }

  .hero-grid {
    min-height: auto;
    gap: 62px;
    grid-template-columns: 1fr;
    padding-top: 82px;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
  }

  .eyebrow,
  .store-links,
  .hero-points {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(760px, 95%);
    margin-inline: auto;
  }

  .section-heading {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .phone-gallery {
    gap: 22px;
  }

  .feature-card-wide {
    grid-template-columns: 1fr 1fr;
  }

  .invite-showcase-grid {
    gap: 34px;
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    gap: 60px;
    grid-template-columns: 0.75fr 1.25fr;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 32px, 1180px);
  }

  .nav-shell {
    height: 68px;
  }

  .brand {
    width: 126px;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 40px;
    padding: 66px 0 76px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(1.45rem, 7.8vw, 3.7rem);
    line-height: 1.18;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-points {
    gap: 6px 14px;
    font-size: 0.72rem;
  }

  .store-links {
    gap: 8px;
  }

  .store-link img {
    height: 43px;
  }

  .hero-visual {
    width: 100%;
    padding: 25px 0 32px;
  }

  .hero-card {
    border-radius: 22px;
    transform: none;
  }

  .float-note {
    min-width: 0;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .float-note-balance {
    top: -12px;
    right: -5px;
  }

  .float-note-sync {
    bottom: 0;
    left: -4px;
  }

  .float-icon {
    width: 33px;
    height: 33px;
    border-radius: 10px;
  }

  .float-note small {
    font-size: 0.58rem;
  }

  .float-note strong {
    font-size: 0.7rem;
  }

  .intro,
  .screens-section,
  .feature-grid-section,
  .how-section,
  .faq-section,
  .download-section {
    padding-block: 92px;
  }

  .intro h2,
  .section-heading h2,
  .feature-grid-heading h2,
  .how-heading h2,
  .invite-copy h2,
  .faq-heading h2,
  .download-shell h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .mobile-break {
    display: block;
  }

  .intro-cards {
    margin-top: 45px;
    gap: 13px;
    grid-template-columns: 1fr;
  }

  .intro-cards article {
    padding: 25px 24px;
  }

  .phone-gallery {
    width: calc(100% + 16px);
    margin-top: 54px;
    padding: 0 16px 30px 0;
    overflow-x: auto;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(260px, 78vw));
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .phone-gallery::-webkit-scrollbar {
    display: none;
  }

  .phone-feature {
    scroll-snap-align: start;
  }

  .phone-feature-offset {
    margin-top: 0;
  }

  .phone-frame {
    border-width: 7px;
    border-radius: 34px;
  }

  .phone-frame::before {
    top: 6px;
    width: 65px;
    height: 18px;
  }

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

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

  .feature-card,
  .feature-card-wide {
    min-height: 490px;
    padding: 30px 25px;
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .split-card {
    gap: 30px;
  }

  .balance-visual {
    padding: 22px 17px;
  }

  .balance-line {
    gap: 7px;
    grid-template-columns: 1fr 18px 1fr;
  }

  .balance-line span {
    padding: 14px 8px;
    font-size: 0.95rem;
  }

  .invite-visual {
    right: 25px;
    left: 25px;
    grid-template-columns: 64px 1fr 64px;
  }

  .avatar {
    width: 64px;
    height: 64px;
  }

  .recurring-list {
    right: 24px;
    left: 24px;
  }

  .theme-card {
    display: grid;
    max-height: 760px;
    padding-bottom: 0;
  }

  .dark-phone {
    width: 70%;
    max-width: 250px;
    margin-top: 15px;
  }

  .steps {
    margin-top: 52px;
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .steps::before {
    top: 75px;
    right: auto;
    bottom: 85px;
    left: 50%;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, #b9d8e9 0 8px, transparent 8px 14px);
  }

  .steps li {
    padding: 0 12px 12px;
  }

  .step-icon {
    border-width: 8px;
  }

  .invite-showcase {
    padding-top: 92px;
  }

  .invite-showcase-grid {
    grid-template-columns: 1fr;
  }

  .invite-copy {
    padding-bottom: 20px;
  }

  .invite-phone-wrap {
    min-height: 580px;
  }

  .invite-phone {
    width: min(310px, 82vw);
  }

  .faq-grid {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .download-shell h2 br {
    display: none;
  }

  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .hero h1 {
    font-size: 7.8vw;
  }

  .store-link img {
    height: 40px;
  }

  .hero-points {
    display: grid;
    justify-content: center;
  }
}

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

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