  :root {
    /* Palette */
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;

    --bg: #0f172a;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;

    --text: #f8fafc;
    --text-muted: #94a3b8;

    --border: #334155;
    --border-hover: #475569;

    --accent: #8b5cf6;
    /* Violet accent for gradients */

    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --radius: 16px;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
  }

  ::selection {
    background: rgba(59, 130, 246, 0.3);
    color: #fff;
  }

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

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

  .corner-banner {
    position: fixed;
    top: 70px;
    /* right: -132px; */
    /* transform: rotate(45deg); */
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    padding: 12px 120px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow);
    z-index: 1200;
    pointer-events: none;
    width: 100vw;
  }

  .corner-banner span {
    display: block;
    text-align: center;
    white-space: nowrap;
  }

  .container {
    width: min(1200px, 94vw);
    margin: 0 auto;
  }

  header.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }

  header.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Outfit", sans-serif;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  }

  .logo-text {
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
  }

  .nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }

  .menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 10px;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  main {
    padding-top: 92px;
  }

  section {
    padding: 80px 0;
    scroll-margin-top: 96px;
  }

  .eyebrow {
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-light);
    font-weight: 700;
    margin-bottom: 12px;
  }

  h1,
  h2,
  h3,
  h4 {
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--text);
    font-family: "Outfit", sans-serif;
  }

  h1 {
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    line-height: 1.1;
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 14px;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    margin: 0 0 16px;
    color: var(--text-muted);
    max-width: 720px;
    font-size: 1.05rem;
  }

  .btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.98rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  }

  .btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-color: var(--border);
    backdrop-filter: blur(10px);
  }

  .btn-secondary:hover {
    border-color: var(--text-muted);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }

  /* Hero */
  #hero {
    padding: 140px 0 100px;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), transparent 40%),
      radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.15), transparent 40%);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
  }

  .hero-slogan {
    margin: 6px 0 20px;
    color: #e2e8f0;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 1.05rem;
  }

  .hero-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .flow {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .flow-step {
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    min-width: 140px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--text);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .flow-step:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
  }

  .flow-step small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
  }

  .flow-step:not(:last-child)::after {
    content: "->";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-family: monospace;
    font-size: 1.2rem;
    opacity: 0.5;
  }

  .scope-caption {
    margin: 24px 0 12px;
    color: var(--text-muted);
    font-weight: 600;
  }

  .scope-subtitle {
    margin: 18px 0 6px;
    font-size: 1.05rem;
    color: #e2e8f0;
  }

  .scope-note {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-weight: 500;
  }


  .hero-slider {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    min-height: 280px;
  }

  .slide {
    position: absolute;
    inset: 0;
    padding: 6px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));*/
    gap: 20px;
    align-items: center;
  }

  .slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
  }

  .slide h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
  }

  .slide p {
    margin: 0;
    color: var(--text-muted);
  }

  .slide-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide-diagram svg {
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .node {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #e5edff;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 0.7rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

  .node.alt {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.4);
    color: #f3e8ff;
  }

  .stack {
    display: grid;
    gap: 8px;
  }

  .stack .node {
    border-radius: 10px;
    padding: 10px 12px;
  }

  .scope-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 24px 0;
  }

  .scope-diagram__svg {
    width: 100%;
    max-width: 440px;
    height: auto;
  }

  .artifact-box {
    fill: rgba(59, 130, 246, 0.16);
    stroke: rgba(59, 130, 246, 0.6);
    stroke-width: 1.2;
  }

  .artifact-box.alt {
    fill: rgba(139, 92, 246, 0.18);
    stroke: rgba(139, 92, 246, 0.6);
  }

  .artifact-node {
    fill: rgba(15, 23, 42, 0.8);
    stroke: rgba(148, 163, 184, 0.8);
    stroke-width: 1.2;
  }

  .artifact-diamond {
    fill: rgba(15, 23, 42, 0.8);
    stroke: rgba(148, 163, 184, 0.8);
    stroke-width: 1.2;
  }

  .artifact-divider {
    stroke: rgba(226, 232, 240, 0.4);
    stroke-width: 1;
  }

  .artifact-line {
    stroke: rgba(148, 163, 184, 0.7);
    stroke-width: 1.4;
    fill: none;
  }

  .artifact-loop {
    stroke: rgba(148, 163, 184, 0.6);
    stroke-width: 1.2;
    fill: none;
  }

  .artifact-arrow-head {
    fill: rgba(148, 163, 184, 0.7);
  }

  .artifact-text,
  .artifact-caption {
    fill: #e2e8f0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    text-anchor: middle;
  }

  .artifact-text {
    font-size: 12px;
    dominant-baseline: middle;
  }

  .artifact-caption {
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .artifact-map {
    display: flex;
    justify-content: center;
    margin: 24px 0;
  }

  .artifact-map svg {
    width: 100%;
    max-width: 520px;
    height: auto;
  }

  .transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 24px 0;
  }

  .transparency-card {
    gap: 10px;
  }

  .transparency-link {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
  }

  .transparency-link:hover {
    color: var(--primary-light);
  }

  .domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 24px;
  }

  .domain-card {
    gap: 12px;
  }

  .domain-diagram {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
  }

  .domain-diagram svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .artifact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
  }

  .artifact-card {
    gap: 12px;
  }

  .artifact-visual {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .artifact-visual svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .domain-box {
    fill: rgba(59, 130, 246, 0.16);
    stroke: rgba(59, 130, 246, 0.6);
    stroke-width: 1.2;
  }

  .domain-box.alt {
    fill: rgba(139, 92, 246, 0.16);
    stroke: rgba(139, 92, 246, 0.6);
  }

  .domain-layer {
    fill: rgba(15, 23, 42, 0.8);
    stroke: rgba(59, 130, 246, 0.35);
    stroke-width: 1.1;
  }

  .domain-node {
    fill: rgba(15, 23, 42, 0.85);
    stroke: rgba(148, 163, 184, 0.7);
    stroke-width: 1.1;
  }

  .domain-diamond {
    fill: rgba(15, 23, 42, 0.85);
    stroke: rgba(148, 163, 184, 0.7);
    stroke-width: 1.1;
  }

  .domain-line {
    stroke: rgba(148, 163, 184, 0.7);
    stroke-width: 1.1;
    fill: none;
  }

  .domain-text {
    fill: #e2e8f0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    font-size: 9px;
    text-anchor: middle;
    dominant-baseline: middle;
  }

  .domain-check {
    stroke: rgba(59, 130, 246, 0.9);
    stroke-width: 2;
    fill: none;
  }

  .github-diagram {
    display: flex;
    justify-content: center;
    margin: 24px 0;
  }

  .github-diagram svg {
    width: 100%;
    max-width: 520px;
    height: auto;
  }

  .github-core {
    fill: rgba(59, 130, 246, 0.2);
    stroke: rgba(59, 130, 246, 0.7);
    stroke-width: 1.4;
  }

  .github-box {
    fill: rgba(15, 23, 42, 0.7);
    stroke: rgba(148, 163, 184, 0.6);
    stroke-width: 1.2;
  }

  .github-line {
    stroke: rgba(148, 163, 184, 0.6);
    stroke-width: 1.2;
  }

  .github-text,
  .github-core-text {
    fill: #e2e8f0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    text-anchor: middle;
    dominant-baseline: middle;
  }

  .github-core-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .github-text {
    font-size: 10px;
  }

  .value-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 24px 0;
  }

  .value-panel {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
  }

  .value-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .value-flow {
    display: grid;
    gap: 8px;
  }

  .value-node {
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 10px;
    padding: 8px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
  }

  .value-node.muted {
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.4);
    color: var(--text-muted);
  }

  .scope-connector {
    stroke: rgba(148, 163, 184, 0.45);
    stroke-width: 1.2;
    stroke-linecap: round;
  }

  .scope-core {
    fill: rgba(59, 130, 246, 0.2);
    stroke: rgba(59, 130, 246, 0.6);
    stroke-width: 1.6;
  }

  .scope-domain {
    fill: rgba(15, 23, 42, 0.7);
    stroke: rgba(59, 130, 246, 0.45);
    stroke-width: 1.2;
  }

  .scope-external {
    fill: rgba(139, 92, 246, 0.18);
    stroke: rgba(139, 92, 246, 0.6);
    stroke-width: 1.2;
  }

  .scope-core-text,
  .scope-domain-text,
  .scope-external-text {
    fill: #e2e8f0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    text-anchor: middle;
  }

  .scope-core-text {
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .scope-domain-text {
    font-size: 11px;
  }

  .scope-external-text {
    font-size: 11px;
  }

  .slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
  }

  .slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
    padding: 0;
  }

  .slider-dots button.active {
    width: 22px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Sections */
  .section-heading {
    margin-bottom: 22px;
  }

  /* Features */
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
  }

  .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

  .icon svg {
    width: 24px;
    height: 24px;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    font-weight: 600;
    font-size: 0.75rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-left: auto;
  }

  /* How it works */
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }

  .step {
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .step strong {
    display: block;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-family: "Outfit", sans-serif;
  }

  /* Open Source */
  .open-source {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    align-items: center;
  }

  /* Coding vs Engineering */
  .coding-vs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
  }

  /* Roadmap */
  .timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
  }

  .timeline-card {
    position: relative;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .timeline-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, var(--primary), var(--accent));
  }

  .timeline-card h3 {
    padding-left: 14px;
  }

  .timeline-card ul {
    margin: 12px 0 0 16px;
    padding: 0;
    color: var(--text-muted);
  }

  .timeline-card li {
    margin-bottom: 8px;
  }

  /* Get involved */
  .get-involved-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    color: var(--muted);
  }

  .get-involved-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
  }

  .get-involved-list li::before {
    content: "->";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
    font-family: monospace;
  }

  /* Footer */
  footer {
    background: #020617;
    color: var(--text-muted);
    padding: 60px 0 40px;
    margin-top: 60px;
    border-top: 1px solid var(--border);
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
  }

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

  .footer-links a {
    color: #cdd3df;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer-links a:hover {
    color: var(--primary-light);
  }

  /* Responsive */
  @media (max-width: 900px) {
    header.navbar {
      border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    }

    .nav-links {
      position: fixed;
      top: 72px;
      right: 0;
      background: #ffffff;
      flex-direction: column;
      align-items: flex-start;
      width: 72%;
      max-width: 320px;
      padding: 18px;
      box-shadow: -14px 20px 32px rgba(15, 23, 42, 0.08);
      transform: translateX(110%);
      transition: transform 0.3s ease;
      height: calc(100vh - 72px);
      overflow-y: auto;
    }

    .nav-links.open {
      transform: translateX(0%);
    }

    .menu-toggle {
      display: block;
    }

    .flow {
      flex-direction: column;
    }

    .flow-step {
      width: 100%;
    }

    .flow-step::after,
    .flow-step::before {
      display: none;
    }
  }

  @media (max-width: 720px) {
    .corner-banner {
      top: 82px;
      right: 12px;
      transform: none;
      padding: 10px 12px;
      border-radius: 8px;
    }

    .corner-banner span {
      white-space: normal;
      line-height: 1.3;
    }
  }

  @media (max-width: 640px) {
    section {
      padding: 64px 0;
    }

    .hero-slider {
      padding: 16px;
    }
  }