  :root {
    --blue: #3646E0;
    --blue-deep: #1E2560;
    --blue-light: #5A6FEA;
    --blue-soft: #EBEDFC;
    --coral: #FF6B4A;
    --coral-text: #C94A2E;
    --coral-soft: #FFEDE8;
    --green: #2E9E5B;
    --green-soft: #E8F6EE;
    --kakao: #FEE500;
    --ink: #14161F;
    --ink-dim: #787E92;
    --line: #E7EAF0;
    --bg: #F7F8FB;
    --card: #FFFFFF;
    --nav-h: 72px;
  }

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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 16px);
  }

  body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    overflow-x: hidden;
  }

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

  button {
    font-family: inherit;
    cursor: pointer;
  }

  svg {
    display: block;
  }

  .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }

  :focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
    border-radius: 8px;
  }

  /* ===== NAV ===== */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(247, 248, 251, 0.82);
    backdrop-filter: blur(16px) saturate(1.5);
    border-bottom: 1px solid rgba(231, 234, 240, 0.9);
  }

  nav .in {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .real-logo {
    height: 26px;
    width: auto;
  }

  .nav-mid {
    display: flex;
    gap: 34px;
  }

  .nav-mid a {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-dim);
    transition: color .18s;
  }

  .nav-mid a:hover {
    color: var(--blue);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .nav-login {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-dim);
    transition: color .18s;
  }

  .nav-login:hover {
    color: var(--ink);
  }

  .btn-nav {
    background: var(--blue);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 12px;
    border: none;
    white-space: nowrap;
    box-shadow: 0 10px 22px -12px rgba(54, 70, 224, 0.85);
    transition: transform .18s, box-shadow .18s;
  }

  .btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px -12px rgba(54, 70, 224, 0.9);
  }

  /* ===== BUTTONS ===== */
  .btn-lg {
    font-size: 17px;
    font-weight: 700;
    padding: 17px 30px;
    border-radius: 14px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: transform .18s, box-shadow .18s;
  }

  .btn-lg.primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 18px 34px -16px rgba(54, 70, 224, 0.75);
  }

  .btn-lg.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px -16px rgba(54, 70, 224, 0.85);
  }

  .btn-lg.ghost {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line);
  }

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

  /* ===== HERO ===== */
  .hero {
    position: relative;
    padding: 76px 0 96px;
    overflow: hidden;
  }

  .mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .mesh .b1 {
    position: absolute;
    top: -260px;
    right: -140px;
    width: 900px;
    height: 640px;
    background: radial-gradient(ellipse, rgba(90, 111, 234, 0.20), transparent 66%);
    animation: drift1 16s ease-in-out infinite;
  }

  .mesh .b2 {
    position: absolute;
    top: 120px;
    left: -220px;
    width: 760px;
    height: 560px;
    background: radial-gradient(ellipse, rgba(255, 107, 74, 0.12), transparent 66%);
    animation: drift2 20s ease-in-out infinite;
  }

  @keyframes drift1 {

    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }

    50% {
      transform: translate(-24px, 22px) scale(1.06);
    }
  }

  @keyframes drift2 {

    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }

    50% {
      transform: translate(18px, -18px) scale(1.05);
    }
  }

  .hero-in {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(54, 70, 224, 0.16);
    padding: 9px 17px;
    border-radius: 999px;
    margin-bottom: 26px;
  }

  .badge .dt {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
  }

  .hero h1 {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.24;
    color: var(--blue-deep);
  }

  .hero h1 .accent {
    background: linear-gradient(100deg, var(--coral-text), var(--coral));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero .sub {
    font-size: 19px;
    color: var(--ink-dim);
    margin: 24px 0 36px;
    line-height: 1.7;
  }

  .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }

  .proof .avs {
    display: flex;
  }

  .proof .avs span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid var(--bg);
    margin-left: -11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
  }

  .proof .avs span:first-child {
    margin-left: 0;
  }

  .proof .avs span:nth-child(1) {
    background: linear-gradient(150deg, #5A6FEA, #3646E0);
  }

  .proof .avs span:nth-child(2) {
    background: linear-gradient(150deg, #FF8A6E, #E8502E);
  }

  .proof .avs span:nth-child(3) {
    background: linear-gradient(150deg, #4FC08D, #2E9E5B);
  }

  .proof .txt {
    font-size: 15.5px;
    color: var(--ink-dim);
    line-height: 1.55;
  }

  .proof .txt b {
    color: var(--ink);
    font-weight: 800;
  }

  /* ===== ORBIT (signature) ===== */
  .orbit {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 520px;
    margin-left: auto;
  }

  .orbit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .orbit-line {
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
    transition: stroke-dashoffset .75s cubic-bezier(.3, .6, .3, 1);
  }

  .orbit.in-view .orbit-line {
    stroke-dashoffset: 0;
  }

  .orbit-line[data-i="0"] {
    transition-delay: .05s;
  }

  .orbit-line[data-i="1"] {
    transition-delay: .15s;
  }

  .orbit-line[data-i="2"] {
    transition-delay: .25s;
  }

  .orbit-line[data-i="3"] {
    transition-delay: .35s;
  }

  .orbit-line[data-i="4"] {
    transition-delay: .45s;
  }

  .orbit-line[data-i="5"] {
    transition-delay: .55s;
  }

  .orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 37%;
    z-index: 3;
  }

  .orbit-ring {
    position: absolute;
    inset: -19%;
    border-radius: 50%;
    border: 1.5px dashed rgba(54, 70, 224, 0.28);
    animation: spin 34s linear infinite;
  }

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

  .orbit-center .cc {
    position: relative;
    background: linear-gradient(155deg, var(--blue-light), var(--blue-deep));
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 30px 56px -22px rgba(19, 24, 38, 0.5), 0 0 0 8px rgba(54, 70, 224, 0.09);
  }

  .orbit-center .vid {
    aspect-ratio: 16/11;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .orbit-center .vid .p {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .orbit-center .vid .p svg {
    width: 13px;
    height: 13px;
    margin-left: 2px;
  }

  .orbit-center .t {
    color: #fff;
    font-size: 14.5px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
  }

  .orbit-center .k {
    color: #FFC3B2;
    font-size: 11.5px;
    font-weight: 700;
    text-align: center;
    margin-top: 3px;
  }

  .orbit-item {
    position: absolute;
    z-index: 2;
    width: 104px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    opacity: 0;
    transition: opacity .55s ease, transform .55s cubic-bezier(.2, .9, .3, 1.3);
  }

  .orbit.in-view .orbit-item {
    opacity: 1;
  }

  .orbit-item[data-i="0"] {
    transition-delay: .25s;
  }

  .orbit-item[data-i="1"] {
    transition-delay: .35s;
  }

  .orbit-item[data-i="2"] {
    transition-delay: .45s;
  }

  .orbit-item[data-i="3"] {
    transition-delay: .55s;
  }

  .orbit-item[data-i="4"] {
    transition-delay: .65s;
  }

  .orbit-item[data-i="5"] {
    transition-delay: .75s;
  }

  .oi-ic {
    width: 56px;
    height: 56px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: #fff;
    box-shadow: 0 16px 30px -14px rgba(20, 22, 31, 0.28);
    border: 1px solid var(--line);
  }

  .oi-ic.b {
    background: var(--blue-soft);
  }

  .oi-ic.c {
    background: var(--coral-soft);
  }

  .oi-ic.g {
    background: var(--green-soft);
  }

  .oi-ic.k {
    background: var(--kakao);
  }

  .oi-t {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.35;
    letter-spacing: -0.02em;
  }

  .orbit-fallback {
    display: none;
  }

  /* ===== SECTION HEAD ===== */
  .section-head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 60px;
  }

  .section-head .eyebrow {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--coral-text);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .section-head h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--blue-deep);
    line-height: 1.38;
  }

  .section-head p {
    font-size: 17px;
    color: var(--ink-dim);
    margin-top: 16px;
    line-height: 1.7;
  }

  /* ===== PROCESS ===== */
  .process {
    padding: 100px 0 90px;
  }

  .steps-rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--blue-soft);
    border-radius: 28px;
    padding: 50px 36px 44px;
  }

  .steps-rail::before {
    content: "";
    position: absolute;
    top: 86px;
    left: 19%;
    right: 19%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(54, 70, 224, 0.28) 0 8px, transparent 8px 16px);
  }

  .step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
  }

  .step .n {
    width: 64px;
    height: 64px;
    border-radius: 19px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: #fff;
    border: 1px solid rgba(54, 70, 224, 0.14);
    box-shadow: 0 14px 30px -16px rgba(20, 22, 31, 0.22);
  }

  .step.mid .n {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 16px 32px -14px rgba(54, 70, 224, 0.8);
  }

  .step .t {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }

  .step .d {
    font-size: 15.5px;
    color: var(--ink-dim);
    line-height: 1.65;
  }

  /* ===== OUTPUTS ===== */
  .outputs {
    padding: 0 0 100px;
  }

  .outputs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .oc {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 20px 20px 24px;
    box-shadow: 0 22px 46px -34px rgba(20, 22, 31, 0.2);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .oc:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 54px -30px rgba(20, 22, 31, 0.25);
  }

  .oc-preview {
    border-radius: 15px;
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
  }

  .oc h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }

  .oc p {
    font-size: 14.5px;
    color: var(--ink-dim);
    line-height: 1.6;
  }

  .p-shorts {
    background: linear-gradient(165deg, #2A2E3D, #14151C);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-shorts .tag {
    position: absolute;
    top: 11px;
    left: 11px;
    font-size: 10.5px;
    font-weight: 800;
    background: var(--coral);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: .04em;
  }

  .p-shorts .play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-shorts .play svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
  }

  .p-shorts .cap {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.45;
  }

  .p-sum {
    background: var(--blue-soft);
    padding: 16px;
  }

  .p-sum .doc {
    background: #fff;
    border-radius: 11px;
    padding: 13px;
    height: 100%;
    box-shadow: 0 8px 18px -12px rgba(20, 22, 31, 0.2);
  }

  .p-sum .h {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--blue-deep);
    margin-bottom: 11px;
  }

  .p-sum .ln {
    display: flex;
    gap: 7px;
    margin-bottom: 9px;
  }

  .p-sum .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    margin-top: 6px;
    flex: 0 0 auto;
  }

  .p-sum .tx {
    font-size: 11.5px;
    color: #4A5065;
    line-height: 1.5;
    font-weight: 600;
  }

  .p-card {
    background: linear-gradient(165deg, var(--blue), var(--blue-deep));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
  }

  .p-card .q {
    font-size: 38px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.22);
    line-height: .8;
    margin-bottom: 10px;
  }

  .p-card .v {
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.02em;
  }

  .p-card .r {
    color: #B8C2FF;
    font-size: 11.5px;
    font-weight: 700;
    margin-top: 12px;
  }

  .p-kakao {
    background: #FFF9E5;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
  }

  .p-kakao .sender {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
  }

  .p-kakao .av {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue);
  }

  .p-kakao .nm {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--ink-dim);
  }

  .p-kakao .bubble {
    background: var(--kakao);
    border-radius: 13px 13px 13px 3px;
    padding: 10px 13px;
    font-size: 12px;
    font-weight: 700;
    color: #3A2E00;
    line-height: 1.5;
    align-self: flex-start;
  }

  .p-kakao .tm {
    font-size: 10px;
    color: var(--ink-dim);
    margin-left: 3px;
  }

  /* ===== FEATURES ===== */
  .features {
    padding: 96px 0 100px;
    background: linear-gradient(180deg, var(--bg) 0%, #F1F3FE 50%, var(--bg) 100%);
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .fc {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--fc);
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: 0 22px 48px -36px rgba(20, 22, 31, 0.18);
    transition: transform .25s, box-shadow .25s;
  }

  .fc:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 58px -32px rgba(20, 22, 31, 0.24);
  }

  .fc:nth-child(1) {
    --fc: var(--blue);
  }

  .fc:nth-child(2) {
    --fc: var(--coral);
  }

  .fc:nth-child(3) {
    --fc: var(--green);
  }

  .fc .ic {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
  }

  .fc:nth-child(2) .ic {
    background: var(--coral-soft);
  }

  .fc:nth-child(3) .ic {
    background: var(--green-soft);
  }

  .fc h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }

  .fc p {
    font-size: 16px;
    color: var(--ink-dim);
    line-height: 1.7;
  }

  /* ===== CTA BAND ===== */
  .cta-band {
    position: relative;
    max-width: 1180px;
    margin: 0 auto 96px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(150deg, var(--blue), var(--blue-deep));
    padding: 96px 40px;
    text-align: center;
  }

  .cta-band::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.28), transparent 66%);
  }

  .cta-band h2 {
    position: relative;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .cta-band p {
    position: relative;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 38px;
    line-height: 1.7;
  }

  .cta-row {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-band .btn-lg.primary {
    background: #fff;
    color: var(--blue-deep);
    box-shadow: 0 18px 36px -16px rgba(0, 0, 0, 0.4);
  }

  .cta-band .btn-lg.ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
  }

  .cta-band .btn-lg.ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
  }

  /* ===== FOOTER ===== */
  footer {
    padding: 0 0 60px;
  }

  .foot-grid {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }

  .foot-brand p {
    font-size: 15px;
    color: var(--ink-dim);
    max-width: 330px;
    margin-top: 16px;
    line-height: 1.75;
  }

  .foot-col {
    min-width: 150px;
  }

  .foot-col h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 18px;
  }

  .foot-col a {
    display: block;
    font-size: 15px;
    color: var(--ink-dim);
    margin-bottom: 12px;
    transition: color .18s;
  }

  .foot-col a:hover {
    color: var(--blue);
  }

  .foot-note {
    font-size: 13.5px;
    color: var(--ink-dim);
    margin-top: 28px;
    line-height: 1.9;
  }

  .foot-note .cr {
    display: block;
    margin-top: 14px;
  }

  /* ===== 자세히 보기 링크 ===== */
  .more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--blue);
    background: #fff;
    border: 1.5px solid var(--line);
    padding: 13px 24px;
    border-radius: 999px;
    transition: border-color .18s, transform .18s;
  }

  .more a:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
  }

  /* ===== REVEAL ===== */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
  }

  .reveal.in-view {
    opacity: 1;
    transform: none;
  }

  .step:nth-child(2).reveal {
    transition-delay: .1s;
  }

  .step:nth-child(3).reveal {
    transition-delay: .2s;
  }

  .oc:nth-child(2).reveal {
    transition-delay: .08s;
  }

  .oc:nth-child(3).reveal {
    transition-delay: .16s;
  }

  .oc:nth-child(4).reveal {
    transition-delay: .24s;
  }

  .fc:nth-child(2).reveal {
    transition-delay: .1s;
  }

  .fc:nth-child(3).reveal {
    transition-delay: .2s;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width:1080px) {
    .nav-mid {
      display: none;
    }

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

    .hero h1 {
      font-size: 44px;
    }

    .orbit {
      max-width: 440px;
      margin: 0 auto;
    }

    .outputs-grid {
      grid-template-columns: repeat(2, 1fr);
    }

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

  @media (max-width:720px) {
    :root {
      --nav-h: 62px;
    }

    .wrap,
    nav .in {
      padding: 0 20px;
    }

    .hero {
      padding: 48px 0 68px;
    }

    .hero h1 {
      font-size: 32px;
    }

    .hero .sub {
      font-size: 16.5px;
      margin: 18px 0 28px;
    }

    .btn-lg {
      font-size: 15.5px;
      padding: 15px 22px;
      flex: 1 1 auto;
    }

    .hero-ctas {
      gap: 10px;
    }

    .btn-nav {
      padding: 9px 14px;
      font-size: 13.5px;
    }

    .nav-login {
      font-size: 14px;
    }

    .real-logo {
      height: 22px;
    }

    .proof {
      margin-top: 32px;
      padding-top: 22px;
    }

    .orbit {
      display: none;
    }

    .orbit-fallback {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .orbit-fallback .fi {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 16px 8px;
      text-align: center;
      box-shadow: 0 14px 28px -24px rgba(20, 22, 31, 0.3);
    }

    .orbit-fallback .fi .e {
      font-size: 22px;
      display: block;
      margin-bottom: 7px;
    }

    .orbit-fallback .fi .t {
      font-size: 12px;
      font-weight: 800;
      line-height: 1.35;
      letter-spacing: -0.02em;
    }

    .section-head {
      margin-bottom: 40px;
    }

    .section-head h2 {
      font-size: 27px;
    }

    .section-head p {
      font-size: 15.5px;
    }

    .process {
      padding: 64px 0 60px;
    }

    .steps-rail {
      grid-template-columns: 1fr;
      gap: 34px;
      padding: 36px 24px;
      border-radius: 22px;
    }

    .steps-rail::before {
      display: none;
    }

    .outputs {
      padding-bottom: 64px;
    }

    .outputs-grid {
      grid-template-columns: 1fr;
      max-width: 340px;
      margin: 0 auto;
    }

    .features {
      padding: 64px 0;
    }

    .cta-band {
      margin: 0 20px 64px;
      padding: 60px 24px;
      border-radius: 26px;
    }

    .cta-band h2 {
      font-size: 27px;
    }

    .cta-band p {
      font-size: 15.5px;
    }

    .cta-row {
      flex-direction: column;
    }

    .foot-grid {
      flex-direction: column;
      gap: 32px;
    }
  }

  @media (prefers-reduced-motion:reduce) {

    .mesh .b1,
    .mesh .b2,
    .orbit-ring {
      animation: none;
    }

    .reveal,
    .orbit-item {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .orbit-line {
      stroke-dashoffset: 0;
      transition: none;
    }

    html {
      scroll-behavior: auto;
    }
  }