
    :root {
      --bg: #f6f7fb;
      --surface: rgba(255, 255, 255, 0.76);
      --surface-solid: #ffffff;
      --text: #12131a;
      --muted: #6f7280;
      --line: rgba(18, 19, 26, 0.09);
      --primary: #6d5dfc;
      --primary-2: #8f80ff;
      --accent: #31d7c5;
      --danger: #ff6f91;
      --shadow: 0 24px 60px rgba(60, 55, 120, 0.14);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max-width: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 0%, rgba(109, 93, 252, 0.17), transparent 26rem),
        radial-gradient(circle at 92% 18%, rgba(49, 215, 197, 0.14), transparent 25rem),
        linear-gradient(180deg, #fbfbfe 0%, var(--bg) 100%);
      font-family:
        Pretendard,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Noto Sans KR",
        Arial,
        sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    button,
    input {
      font: inherit;
    }

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

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

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

    .page-shell {
      position: relative;
      overflow: hidden;
    }

    .page-shell::before,
    .page-shell::after {
      position: absolute;
      z-index: -1;
      content: "";
      border-radius: 999px;
      filter: blur(6px);
      pointer-events: none;
    }

    .page-shell::before {
      top: 420px;
      left: -180px;
      width: 380px;
      height: 380px;
      background: rgba(109, 93, 252, 0.08);
    }

    .page-shell::after {
      top: 900px;
      right: -180px;
      width: 420px;
      height: 420px;
      background: rgba(49, 215, 197, 0.09);
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(255, 255, 255, 0.65);
      background: rgba(246, 247, 251, 0.72);
      backdrop-filter: blur(20px);
    }

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

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .brand-mark {
      position: relative;
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      overflow: hidden;
      color: white;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), #4f3be8);
      box-shadow: 0 10px 24px rgba(109, 93, 252, 0.28);
    }

    .brand-mark::after {
      position: absolute;
      right: -10px;
      bottom: -14px;
      width: 32px;
      height: 32px;
      content: "";
      border-radius: 50%;
      background: var(--accent);
      opacity: 0.72;
    }

    .brand-mark span {
      position: relative;
      z-index: 1;
      font-size: 14px;
      letter-spacing: -0.05em;
    }

    .brand-name {
      font-size: 18px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .nav-menu a {
      transition: color 0.2s ease;
    }

    .nav-menu a:hover {
      color: var(--text);
    }

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

    .language-switch {
      display: inline-flex;
      padding: 4px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.68);
      box-shadow: 0 8px 24px rgba(35, 34, 70, 0.06);
    }

    .language-switch button {
      min-width: 46px;
      padding: 8px 12px;
      color: var(--muted);
      border: 0;
      border-radius: 999px;
      background: transparent;
      cursor: pointer;
      transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
    }

    .language-switch button:hover {
      color: var(--text);
    }

    .language-switch button.is-active {
      color: white;
      background: var(--text);
      box-shadow: 0 6px 14px rgba(18, 19, 26, 0.16);
    }

    .hero {
      padding: 76px 0 66px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
      align-items: center;
      gap: 58px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 22px;
      padding: 8px 13px;
      color: #5f51e7;
      border: 1px solid rgba(109, 93, 252, 0.16);
      border-radius: 999px;
      background: rgba(109, 93, 252, 0.08);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.01em;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(49, 215, 197, 0.12);
    }

    .hero h1 {
      max-width: 710px;
      margin: 0;
      font-size: clamp(48px, 6.1vw, 82px);
      line-height: 0.98;
      letter-spacing: -0.065em;
    }

    .hero h1 .gradient-text {
      color: transparent;
      background: linear-gradient(110deg, var(--primary), #9d70ff 52%, #35c9bd);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-description {
      max-width: 630px;
      margin: 28px 0 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.75;
      letter-spacing: -0.015em;
    }

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

    .button {
      display: inline-flex;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 20px;
      border: 0;
      border-radius: 15px;
      cursor: pointer;
      font-weight: 800;
      transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
    }

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

    .button-primary {
      color: white;
      background: linear-gradient(135deg, var(--primary), #5947e8);
      box-shadow: 0 16px 30px rgba(109, 93, 252, 0.24);
    }

    .button-primary:hover {
      box-shadow: 0 20px 36px rgba(109, 93, 252, 0.3);
    }

    .button-secondary {
      color: var(--text);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.68);
    }

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

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .proof-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .proof-item svg {
      width: 16px;
      height: 16px;
      color: var(--primary);
    }

    .workspace {
      position: relative;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.84);
      border-radius: 34px;
      background: rgba(255, 255, 255, 0.58);
      box-shadow: var(--shadow);
      backdrop-filter: blur(24px);
    }

    .workspace::before {
      position: absolute;
      z-index: -1;
      top: -26px;
      right: -18px;
      width: 150px;
      height: 150px;
      content: "";
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(109, 93, 252, 0.22), rgba(49, 215, 197, 0.2));
      filter: blur(12px);
    }

    .workspace-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
      padding: 0 4px;
    }

    .workspace-title {
      font-size: 14px;
      font-weight: 800;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      color: #34766e;
      border-radius: 999px;
      background: rgba(49, 215, 197, 0.12);
      font-size: 11px;
      font-weight: 800;
    }

    .status-pill::before {
      width: 7px;
      height: 7px;
      content: "";
      border-radius: 50%;
      background: var(--accent);
    }

    .preview-card {
      min-height: 450px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: var(--surface-solid);
    }

    .preview-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .toolbar-tabs {
      display: flex;
      gap: 6px;
      padding: 4px;
      border-radius: 12px;
      background: #f1f2f7;
    }

    .toolbar-tab {
      padding: 7px 10px;
      color: var(--muted);
      border: 0;
      border-radius: 9px;
      background: transparent;
      font-size: 11px;
      font-weight: 800;
    }

    .toolbar-tab.is-active {
      color: var(--text);
      background: white;
      box-shadow: 0 5px 12px rgba(34, 34, 60, 0.08);
    }

    .toolbar-action {
      display: grid;
      width: 32px;
      height: 32px;
      place-items: center;
      color: var(--muted);
      border: 1px solid var(--line);
      border-radius: 10px;
      background: white;
    }

    .canvas {
      position: relative;
      display: grid;
      min-height: 292px;
      place-items: center;
      overflow: hidden;
      border-radius: 18px;
      background:
        linear-gradient(45deg, #eff0f5 25%, transparent 25%) 0 0 / 20px 20px,
        linear-gradient(-45deg, #eff0f5 25%, transparent 25%) 0 10px / 20px 20px,
        linear-gradient(45deg, transparent 75%, #eff0f5 75%) 10px -10px / 20px 20px,
        linear-gradient(-45deg, transparent 75%, #eff0f5 75%) -10px 0 / 20px 20px,
        #f8f8fb;
    }

    .sticker-shape {
      position: relative;
      display: grid;
      width: 190px;
      height: 190px;
      place-items: center;
      border-radius: 44% 56% 50% 50% / 58% 46% 54% 42%;
      background: linear-gradient(135deg, #7a68ff, #4b38dc);
      box-shadow:
        0 0 0 12px white,
        0 0 0 15px var(--danger),
        0 22px 34px rgba(64, 49, 181, 0.25);
      transform: rotate(-4deg);
    }

    .sticker-shape::before,
    .sticker-shape::after {
      position: absolute;
      content: "";
      border-radius: 50%;
    }

    .sticker-shape::before {
      top: 34px;
      left: 42px;
      width: 23px;
      height: 23px;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 82px 18px 0 rgba(255, 255, 255, 0.88);
    }

    .sticker-shape::after {
      bottom: 45px;
      left: 62px;
      width: 65px;
      height: 32px;
      border-bottom: 8px solid white;
      border-radius: 50%;
      transform: rotate(3deg);
    }

    .cutline-label {
      position: absolute;
      right: 22px;
      bottom: 22px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 10px;
      color: #a13e62;
      border: 1px solid rgba(255, 111, 145, 0.2);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      font-size: 10px;
      font-weight: 900;
      box-shadow: 0 8px 20px rgba(60, 50, 90, 0.1);
    }

    .cutline-label::before {
      width: 15px;
      height: 2px;
      content: "";
      border-radius: 999px;
      background: var(--danger);
    }

    .analysis-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 14px;
    }

    .analysis-card {
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 15px;
      background: #fbfbfd;
    }

    .analysis-label {
      margin-bottom: 7px;
      color: var(--muted);
      font-size: 10px;
      font-weight: 800;
    }

    .analysis-value {
      font-size: 13px;
      font-weight: 900;
    }

    .analysis-value.good {
      color: #27867c;
    }

    .analysis-value.warning {
      color: #d47434;
    }

    .section {
      padding: 92px 0;
    }

    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 34px;
    }

    .section-kicker {
      margin-bottom: 11px;
      color: var(--primary);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .section-heading h2 {
      max-width: 760px;
      margin: 0;
      font-size: clamp(34px, 4.2vw, 56px);
      line-height: 1.08;
      letter-spacing: -0.052em;
    }

    .section-heading p {
      max-width: 390px;
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

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

    .feature-card {
      position: relative;
      min-height: 250px;
      padding: 26px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.72);
      box-shadow: 0 16px 40px rgba(46, 43, 88, 0.07);
      backdrop-filter: blur(15px);
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(46, 43, 88, 0.12);
    }

    .feature-card::after {
      position: absolute;
      right: -60px;
      bottom: -70px;
      width: 150px;
      height: 150px;
      content: "";
      border-radius: 50%;
      background: var(--card-glow, rgba(109, 93, 252, 0.12));
    }

    .feature-icon {
      display: grid;
      width: 48px;
      height: 48px;
      margin-bottom: 36px;
      place-items: center;
      color: var(--icon-color, var(--primary));
      border-radius: 15px;
      background: var(--icon-bg, rgba(109, 93, 252, 0.1));
    }

    .feature-icon svg {
      width: 23px;
      height: 23px;
    }

    .feature-card h3 {
      margin: 0 0 10px;
      font-size: 20px;
      letter-spacing: -0.03em;
    }

    .feature-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .upload-section {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 28px;
      align-items: stretch;
    }

    .upload-copy,
    .upload-panel {
      border-radius: var(--radius-xl);
    }

    .upload-copy {
      position: relative;
      overflow: hidden;
      padding: 42px;
      color: white;
      background:
        radial-gradient(circle at 100% 0%, rgba(49, 215, 197, 0.28), transparent 16rem),
        linear-gradient(145deg, #191827, #2d285f);
      box-shadow: var(--shadow);
    }

    .upload-copy::after {
      position: absolute;
      right: -60px;
      bottom: -60px;
      width: 220px;
      height: 220px;
      content: "";
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 50%;
      box-shadow:
        0 0 0 34px rgba(255, 255, 255, 0.035),
        0 0 0 68px rgba(255, 255, 255, 0.02);
    }

    .upload-copy .section-kicker {
      color: #a89eff;
    }

    .upload-copy h2 {
      max-width: 420px;
      margin: 0;
      font-size: clamp(36px, 4vw, 54px);
      line-height: 1.08;
      letter-spacing: -0.055em;
    }

    .upload-copy p {
      max-width: 440px;
      margin: 20px 0 0;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.75;
    }

    .mini-list {
      display: grid;
      gap: 13px;
      margin-top: 34px;
    }

    .mini-list-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.86);
      font-size: 14px;
      font-weight: 700;
    }

    .mini-list-item span:first-child {
      display: grid;
      width: 28px;
      height: 28px;
      place-items: center;
      color: #171627;
      border-radius: 10px;
      background: var(--accent);
      font-size: 12px;
      font-weight: 900;
    }

    .upload-panel {
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.72);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .drop-zone {
      position: relative;
      display: grid;
      min-height: 390px;
      place-items: center;
      overflow: hidden;
      padding: 28px;
      border: 1.5px dashed rgba(109, 93, 252, 0.35);
      border-radius: 24px;
      background:
        radial-gradient(circle at 50% 32%, rgba(109, 93, 252, 0.08), transparent 15rem),
        rgba(250, 250, 253, 0.72);
      text-align: center;
      transition:
        border-color 0.2s ease,
        background 0.2s ease;
    }

    .drop-zone.is-dragging {
      border-color: var(--primary);
      background: rgba(109, 93, 252, 0.08);
    }

    .drop-zone input {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    .upload-idle,
    .upload-result {
      width: 100%;
    }

    .upload-icon {
      display: grid;
      width: 70px;
      height: 70px;
      margin: 0 auto 18px;
      place-items: center;
      color: var(--primary);
      border-radius: 23px;
      background: rgba(109, 93, 252, 0.1);
      box-shadow: inset 0 0 0 1px rgba(109, 93, 252, 0.08);
    }

    .upload-icon svg {
      width: 30px;
      height: 30px;
    }

    .drop-zone h3 {
      margin: 0;
      font-size: 21px;
      letter-spacing: -0.03em;
    }

    .drop-zone p {
      margin: 10px auto 20px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .file-note {
      margin-top: 16px;
      color: #9295a2;
      font-size: 11px;
    }

    .upload-result {
      display: none;
    }

    .upload-result.is-visible {
      display: block;
    }

    .upload-idle.is-hidden {
      display: none;
    }

    .image-preview-frame {
      display: grid;
      min-height: 220px;
      margin-bottom: 18px;
      place-items: center;
      overflow: hidden;
      border-radius: 18px;
      background:
        linear-gradient(45deg, #ededf3 25%, transparent 25%) 0 0 / 18px 18px,
        linear-gradient(-45deg, #ededf3 25%, transparent 25%) 0 9px / 18px 18px,
        linear-gradient(45deg, transparent 75%, #ededf3 75%) 9px -9px / 18px 18px,
        linear-gradient(-45deg, transparent 75%, #ededf3 75%) -9px 0 / 18px 18px,
        #fafafd;
    }

    .image-preview-frame img {
      max-width: 88%;
      max-height: 210px;
      object-fit: contain;
      filter: drop-shadow(0 14px 20px rgba(35, 32, 65, 0.15));
    }

    .file-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 15px;
      background: white;
      text-align: left;
    }

    .file-meta-main {
      min-width: 0;
    }

    .file-name {
      overflow: hidden;
      font-size: 13px;
      font-weight: 900;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .file-size {
      margin-top: 4px;
      color: var(--muted);
      font-size: 11px;
    }



    .object-inspection {
      display: none;
      margin-top: 14px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.9);
      text-align: left;
    }

    .object-inspection.is-visible {
      display: block;
    }

    .inspection-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .inspection-title {
      font-size: 13px;
      font-weight: 900;
    }

    .inspection-summary {
      margin-top: 4px;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.5;
    }

    .inspection-badge {
      flex: none;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(109, 93, 252, 0.1);
      color: var(--primary);
      font-size: 11px;
      font-weight: 900;
    }

    .inspection-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 12px;
    }

    .inspection-stat {
      padding: 10px;
      border-radius: 12px;
      background: #f6f7fb;
    }

    .inspection-stat strong {
      display: block;
      font-size: 16px;
      font-weight: 900;
    }

    .inspection-stat span {
      color: var(--muted);
      font-size: 10px;
      font-weight: 800;
    }

    .object-list {
      display: grid;
      gap: 6px;
      max-height: 150px;
      overflow: auto;
    }

    .object-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 10px;
      background: rgba(18, 19, 26, 0.04);
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
    }

    .reset-button {
      flex: none;
      padding: 8px 10px;
      color: #a13e62;
      border: 0;
      border-radius: 10px;
      background: rgba(255, 111, 145, 0.1);
      cursor: pointer;
      font-size: 11px;
      font-weight: 900;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      counter-reset: step;
    }

    .step-card {
      position: relative;
      min-height: 190px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.66);
    }

    .step-card::before {
      display: grid;
      width: 34px;
      height: 34px;
      margin-bottom: 30px;
      place-items: center;
      content: "0" counter(step);
      counter-increment: step;
      color: white;
      border-radius: 11px;
      background: var(--text);
      font-size: 11px;
      font-weight: 900;
    }

    .step-card:not(:last-child)::after {
      position: absolute;
      top: 40px;
      right: -17px;
      z-index: 2;
      width: 20px;
      height: 1px;
      content: "";
      background: rgba(18, 19, 26, 0.18);
    }

    .step-card h3 {
      margin: 0 0 9px;
      font-size: 17px;
      letter-spacing: -0.025em;
    }

    .step-card p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.65;
    }

    .cta-card {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      overflow: hidden;
      padding: 46px;
      color: white;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 100% 50%, rgba(49, 215, 197, 0.25), transparent 18rem),
        linear-gradient(135deg, var(--primary), #4f3ad7);
      box-shadow: 0 28px 60px rgba(89, 71, 232, 0.25);
    }

    .cta-card::after {
      position: absolute;
      right: -55px;
      top: -80px;
      width: 240px;
      height: 240px;
      content: "";
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      box-shadow:
        0 0 0 42px rgba(255, 255, 255, 0.06),
        0 0 0 86px rgba(255, 255, 255, 0.03);
    }

    .cta-content {
      position: relative;
      z-index: 1;
    }

    .cta-content h2 {
      max-width: 680px;
      margin: 0;
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.12;
      letter-spacing: -0.05em;
    }

    .cta-content p {
      max-width: 600px;
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.7;
    }

    .cta-card .button {
      position: relative;
      z-index: 1;
      flex: none;
      color: var(--text);
      background: white;
      box-shadow: 0 16px 30px rgba(31, 27, 91, 0.2);
    }

    footer {
      padding: 34px 0 44px;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-top: 28px;
      color: var(--muted);
      border-top: 1px solid var(--line);
      font-size: 12px;
    }

    .footer-links {
      display: flex;
      gap: 18px;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .upload-section {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        gap: 44px;
      }

      .workspace {
        width: min(100%, 650px);
        margin: 0 auto;
      }

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

      .feature-card:last-child {
        grid-column: 1 / -1;
      }

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

      .step-card:nth-child(2)::after {
        display: none;
      }

      .cta-card {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(calc(100% - 26px), var(--max-width));
      }

      .nav {
        min-height: 68px;
      }

      .nav-menu {
        display: none;
      }

      .brand-name {
        font-size: 16px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
      }

      .language-switch button {
        min-width: 40px;
        padding: 7px 9px;
      }

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

      .hero h1 {
        font-size: clamp(45px, 13vw, 67px);
      }

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

      .workspace {
        padding: 12px;
        border-radius: 25px;
      }

      .preview-card {
        min-height: 400px;
        padding: 12px;
      }

      .canvas {
        min-height: 250px;
      }

      .sticker-shape {
        width: 150px;
        height: 150px;
      }

      .analysis-row {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 68px 0;
      }

      .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 26px;
      }

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

      .feature-card:last-child {
        grid-column: auto;
      }

      .step-card::after {
        display: none;
      }

      .upload-copy,
      .upload-panel,
      .cta-card {
        padding: 28px;
        border-radius: 24px;
      }

      .drop-zone {
        min-height: 330px;
        padding: 20px;
      }

      .cta-card {
        padding: 34px 28px;
      }

      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }
    }

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

      *,
      *::before,
      *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
      }
    }
  