:root {
  --purple: #7945e5;
  --purple-d: #5f34ba;
  --pink: #ff00ba;
  --ink: #15151a;
  --bg: #faf9f5;
  --muted: #55525e;
  --soft: #8a8694;
  --line: #e8e5e0;
  --card: #fff;
  --green: #1f9d57;
  --lav: #efe4fb;
  --palepink: #fce9f2;
  --grad: linear-gradient(100deg, #7945e5, #ff00ba);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--purple);
}

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

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(121, 69, 229, 0.28);
  transition: transform 0.16s, box-shadow 0.16s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(121, 69, 229, 0.36);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 14px;
  transition: border-color 0.16s, color 0.16s;
}

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Bricolage Grotesque";
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--grad);
}

/* announce */
.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 13.5px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.announce .tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff5ad4;
}

.announce .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

.announce span {
  color: #d9d6e2;
}

.announce b {
  color: #fff;
  font-weight: 600;
}

/* nav */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--purple);
  box-shadow: 0 6px 24px rgba(21, 21, 26, 0.12);
}

nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pink);
}

nav .bar {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo {
  font-family: "Bricolage Grotesque";
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.logo i {
  color: var(--pink);
  font-style: italic;
  margin-left: -8px;
}

.logo .badge {
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #efe4fb;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 4px 9px;
  border-radius: 100px;
}

nav .cta {
  background: #fff;
  color: var(--purple);
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(21, 21, 26, 0.16);
}

/* hero */
header {
  position: relative;
  overflow: hidden;
  padding: 70px 0 64px;
}

header .blob1 {
  position: absolute;
  top: -200px;
  right: -140px;
  width: 720px;
  height: 640px;
  background: radial-gradient(circle, #fbe8f3 0%, rgba(251, 232, 243, 0) 62%);
}

header .blob2 {
  position: absolute;
  top: 20px;
  left: -180px;
  width: 560px;
  height: 520px;
  background: radial-gradient(circle, #efe4fb 0%, rgba(239, 228, 251, 0) 62%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.hero {
  flex: 1 1 0;
  min-width: 0;
}

.hero-grid > .mig {
  flex: 0 0 500px;
  width: 500px;
  max-width: 100%;
}

.hero h1 span {
  color: var(--pink);
}

.hero p.sub,
.hero p.sub2 {
  font-size: 18.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
}

.hero p.sub {
  margin: 20px 0 12px;
}

.hero p.sub2 {
  margin: 0 0 28px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-cta .btn,
.hero-cta .btn-ghost {
  flex-shrink: 0;
}

.signin {
  font-size: 14px;
  color: var(--soft);
  margin-top: 16px;
}

.signin a {
  font-weight: 600;
}

/* migration visual */
.mig {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 24px 56px rgba(121, 69, 229, 0.14);
}

.mig .row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.mig .chip {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  padding: 16px 12px;
  overflow: hidden;
}

.mig .chip.old {
  background: #faf9f7;
  border: 1px solid var(--line);
}

.mig .chip.new {
  background: var(--grad);
  box-shadow: 0 16px 40px rgba(121, 69, 229, 0.28);
}

.mig .chip .nm {
  font-family: "Bricolage Grotesque";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.mig .chip.old .nm {
  color: var(--ink);
}

.mig .chip.old .nm i {
  color: var(--pink);
  font-style: italic;
}

.mig .chip.new .nm {
  color: #fff;
}

.mig .chip.new .nm i {
  color: #ffd6f4;
  font-style: italic;
}

.mig .chip-logo {
  display: block;
  width: 92px;
  height: auto;
  margin: 0 auto;
  flex-shrink: 0;
}

.mig .chip .lb {
  font-size: 12px;
  line-height: 1.3;
  margin-top: 6px;
  white-space: nowrap;
}

.mig .chip.old .lb {
  color: var(--soft);
}

.mig .chip.new .lb {
  color: #f3e6ff;
}

.mig .arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(121, 69, 229, 0.28);
  flex: 0 0 36px;
  align-self: center;
}

.mig .arrow svg {
  width: 16px;
  height: 16px;
}

.mig .status {
  margin-top: 14px;
  background: #eaf7f0;
  border: 1px solid #cdeede;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #137a3f;
}

.mig .status svg {
  flex-shrink: 0;
}

/* trust strip */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fdfcfa, #f4f2ef);
}

.trust .g {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.trust .cell {
  flex: 1 1 0;
  padding: 30px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust .cell:last-child {
  border-right: none;
}

.trust .n {
  font-family: "Bricolage Grotesque";
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--purple);
  line-height: 1.1;
}

.trust .l {
  font-size: 15px;
  color: var(--muted);
  margin-top: 6px;
}

/* what changes */
section {
  padding: 76px 0;
}

.sec-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.sec-head p {
  font-size: 18px;
  color: var(--muted);
  margin-top: 6px;
}

.cards {
  display: flex;
  gap: 20px;
}

.cards .c {
  flex: 1 1 0;
  min-width: 0;
}

.c {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
}

.c .ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.c .ic svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 2;
}

.c h3 {
  font-size: 20px;
  margin-bottom: 9px;
}

.c p {
  font-size: 14.5px;
  color: var(--muted);
}

/* faq */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

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

summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: "Bricolage Grotesque";
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--pink);
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  flex-shrink: 0;
}

details[open] summary::after {
  content: "–";
}

details p {
  color: var(--muted);
  font-size: 16px;
  padding-bottom: 24px;
  max-width: 760px;
}

/* final cta */
.final-wrap {
  padding: 0 0 80px;
}

.final {
  background: linear-gradient(120deg, #5f34ba 0%, #7945e5 55%, #ff00ba 100%);
  border-radius: 30px;
  padding: 70px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(121, 69, 229, 0.3);
}

.final .glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0) 62%
  );
}

.final .in {
  position: relative;
  z-index: 2;
}

.final h2 {
  color: #fff;
  margin-bottom: 14px;
}

.final p {
  color: #f6ebff;
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 26px;
}

.final .btn {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.final .btn:hover {
  color: var(--purple);
}

.final .mini {
  margin-top: 15px;
  font-size: 14px;
  color: #edd9fb;
}

/* footer */
footer {
  background: #2a1147;
  border-top: 3px solid var(--pink);
  padding: 50px 0 44px;
}

footer .fl {
  font-family: "Bricolage Grotesque";
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

footer .fl i {
  color: var(--pink);
  font-style: italic;
  margin-left: -8px;
}

footer p {
  font-size: 16px;
  color: #c9bbde;
  max-width: 620px;
  margin-bottom: 22px;
}

footer .links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
  font-size: 16px;
}

footer .links a {
  color: #ede3f8;
  font-weight: 500;
}

footer .links a:hover {
  color: #ff5ad4;
}

footer .links span {
  color: #7a6494;
}

footer .cr {
  font-size: 15px;
  color: #8d7ba8;
}

/* Tablet landscape / small laptop */
@media (max-width: 1100px) {
  header {
    padding: 48px 0 44px;
  }

  .hero-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .hero,
  .hero-grid > .mig {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-grid > .mig {
    width: 100%;
  }

  .mig .chip .lb {
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(30px, 4.2vw, 44px);
  }

  .hero p.sub,
  .hero p.sub2 {
    font-size: 17px;
    max-width: none;
  }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .wrap,
  nav .bar,
  .trust .g {
    padding-left: 20px;
    padding-right: 20px;
  }

  nav .bar {
    min-height: 58px;
  }

  .logo {
    font-size: 20px;
  }

  header {
    padding: 36px 0 32px;
  }

  header .blob1,
  header .blob2 {
    width: 380px;
    height: 340px;
  }

  .trust .g {
    flex-wrap: wrap;
  }

  .trust .cell {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 24px 14px;
  }

  .trust .cell:nth-child(2n) {
    border-right: none;
  }

  .trust .cell:nth-child(1),
  .trust .cell:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .trust .n {
    font-size: 28px;
  }

  .trust .l {
    font-size: 14px;
  }

  section {
    padding: 56px 0;
  }

  .sec-head {
    margin-bottom: 28px;
  }

  .sec-head p {
    font-size: 16px;
  }

  .cards {
    flex-direction: column;
  }

  .cards .c {
    flex: 1 1 auto;
  }

  .final {
    padding: 48px 24px;
    border-radius: 24px;
  }

  .final-wrap {
    padding: 0 0 48px;
  }

  summary {
    font-size: 17px;
    padding: 18px 0;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .wrap,
  nav .bar,
  .trust .g {
    padding-left: 16px;
    padding-right: 16px;
  }

  .announce {
    font-size: 12.5px;
    padding: 10px 14px;
    gap: 6px;
  }

  nav .bar {
    min-height: 54px;
    gap: 10px;
  }

  .logo {
    font-size: 19px;
    gap: 6px;
    flex-shrink: 1;
    min-width: 0;
  }

  .logo .badge {
    display: none;
  }

  nav .cta {
    flex-shrink: 0;
    font-size: 12.5px;
    padding: 9px 14px;
    white-space: nowrap;
  }

  header {
    padding: 28px 0 24px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .hero p.sub,
  .hero p.sub2 {
    font-size: 16px;
  }

  .hero p.sub {
    margin: 14px 0 10px;
  }

  .hero p.sub2 {
    margin: 0 0 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-cta .btn,
  .hero-cta .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 15px;
  }

  .signin {
    font-size: 13px;
  }

  .mig {
    padding: 14px;
    border-radius: 18px;
  }

  .mig .row {
    gap: 8px;
  }

  .mig .chip {
    padding: 12px 8px;
    border-radius: 14px;
  }

  .mig .chip .nm {
    font-size: 16px;
  }

  .mig .chip-logo {
    width: 78px;
  }

  .mig .chip .lb {
    font-size: 11px;
    white-space: nowrap;
  }

  .mig .arrow {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .mig .arrow svg {
    width: 14px;
    height: 14px;
  }

  .mig .status {
    font-size: 12px;
    padding: 10px;
    gap: 6px;
  }

  .trust .cell {
    padding: 18px 10px;
  }

  .trust .n {
    font-size: 24px;
  }

  .trust .l {
    font-size: 13px;
  }

  section {
    padding: 40px 0;
  }

  .sec-head {
    margin-bottom: 22px;
    text-align: left;
  }

  .c {
    padding: 22px;
    border-radius: 18px;
  }

  .c h3 {
    font-size: 18px;
  }

  summary {
    font-size: 16px;
    padding: 16px 0;
    gap: 12px;
  }

  summary::after {
    font-size: 22px;
  }

  details p {
    font-size: 15px;
    padding-bottom: 18px;
  }

  .final-wrap {
    padding: 0 0 32px;
  }

  .final {
    padding: 36px 18px;
    border-radius: 20px;
  }

  .final p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .final .btn {
    width: 100%;
    max-width: 320px;
  }

  .final .mini {
    font-size: 13px;
    line-height: 1.5;
  }

  footer {
    padding: 36px 0 32px;
  }

  footer p,
  footer .links,
  footer .cr {
    font-size: 14px;
  }
}

/* Small phones */
@media (max-width: 400px) {
  h1 {
    font-size: 26px;
  }

  .mig .chip .lb {
    font-size: 10px;
  }

  .mig .chip-logo {
    width: 68px;
  }

  .mig .chip .nm {
    font-size: 15px;
  }

  .trust .n {
    font-size: 22px;
  }

  .trust .l {
    font-size: 12px;
  }
}
