    :root {
      --background: hsl(210 20% 98%);
      --foreground: hsl(220 20% 14%);
      --primary: hsl(200 80% 50%);
      --secondary: hsl(210 15% 94%);
      --muted-foreground: hsl(220 10% 45%);
      --border: hsl(210 20% 90%);
      --falu: hsl(4 70% 38%);
      --gradient-primary: linear-gradient(135deg, hsl(217 91% 60%) 0%, hsl(187 85% 53%) 100%);
      --gradient-primary-light: linear-gradient(135deg, hsl(217 91% 75%) 0%, hsl(187 85% 70%) 100%);
      --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 100%);
      --shadow-soft: 0 4px 24px -4px rgba(29, 37, 52, 0.08);
      --shadow-elevated: 0 12px 40px -8px rgba(29, 37, 52, 0.12);
      --shadow-glass: 0 8px 32px rgba(25, 176, 229, 0.08);
      --radius: 0.75rem;
      --nav-height: 5rem;
      color-scheme: light;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--background);
      color: var(--foreground);
      font-family: "Inter", sans-serif;
      font-feature-settings: "cv11", "ss01";
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      border: 0;
      background: transparent;
      color: inherit;
      cursor: pointer;
    }

    .mono {
      font-family: "JetBrains Mono", monospace;
      letter-spacing: -0.02em;
    }

    .gradient-text {
      background-image: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .gradient-text-light {
      background-image: var(--gradient-primary-light);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .brand-dot {
      display: inline-block;
      width: 0.5rem;
      height: 0.5rem;
      margin-left: 0.15rem;
      border-radius: 999px;
      background: hsl(4 75% 50%);
      vertical-align: middle;
      transform: translateY(-0.4em);
    }

    .glass-card {
      background: var(--gradient-glass);
      border: 1px solid rgba(255, 255, 255, 0.42);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-glass);
    }

    .btn-gradient,
    .btn-ghost,
    .menu-toggle,
    .nav-button,
    .footer-links a,
    .form-submit {
      transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
    }

    .btn-gradient,
    .form-submit {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      border-radius: var(--radius);
      background-image: var(--gradient-primary);
      color: #fff;
      font-weight: 500;
      box-shadow: 0 4px 16px -4px rgba(59, 130, 246, 0.4);
    }

    .btn-gradient:hover,
    .form-submit:hover:not(:disabled) {
      transform: translateY(-1px);
      box-shadow: 0 6px 24px -4px rgba(59, 130, 246, 0.5);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      border: 1px solid rgba(29, 37, 52, 0.2);
      border-radius: var(--radius);
      color: rgba(29, 37, 52, 0.8);
      font-weight: 500;
    }

    .btn-ghost:hover {
      border-color: rgba(29, 37, 52, 0.4);
      background: rgba(29, 37, 52, 0.05);
      color: var(--foreground);
    }

    .site-main {
      min-height: 100vh;
      overflow: clip;
    }

    .container-wide,
    .container-tight {
      width: min(100% - 3rem, 1280px);
      margin: 0 auto;
    }

    .container-tight {
      max-width: 1100px;
    }

    .section {
      padding: 6rem 0;
    }

    .section-alt {
      background: rgba(231, 236, 241, 0.55);
    }

    .section-gradient {
      background: linear-gradient(180deg, rgba(247, 249, 251, 1) 0%, rgba(236, 241, 245, 0.65) 100%);
    }

    .section-details {
      background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(241, 246, 249, 1) 0%, rgba(233, 239, 244, 0.88) 100%);
    }

    .eyebrow {
      color: var(--muted-foreground);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.24em;
      text-transform: uppercase;
    }

    .site-nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .site-nav.is-scrolled {
      background: rgba(255, 255, 255, 0.8);
      border-bottom: 1px solid rgba(255, 255, 255, 0.42);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-soft);
    }

    .nav-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: var(--nav-height);
      gap: 1rem;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 600;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border-radius: 0.75rem;
      background-image: var(--gradient-primary);
      color: #fff;
      font-size: 0.875rem;
      font-weight: 700;
    }

    .brand:hover .brand-mark {
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-button,
    .nav-links > a {
      color: var(--muted-foreground);
      font-size: 0.95rem;
    }

    .nav-button:hover,
    .nav-links > a:hover {
      color: var(--foreground);
    }

    .nav-cta {
      padding: 0.7rem 1.25rem;
      font-size: 0.95rem;
    }

    .menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 0.75rem;
    }

    .menu-toggle:hover {
      background: rgba(29, 37, 52, 0.05);
    }

    .menu-toggle svg {
      width: 1.5rem;
      height: 1.5rem;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .menu-close-icon {
      display: none;
    }

    .site-nav.is-open .menu-open-icon {
      display: none;
    }

    .site-nav.is-open .menu-close-icon {
      display: block;
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid rgba(255, 255, 255, 0.42);
      padding: 1.5rem 0;
    }

    .site-nav.is-open .mobile-menu {
      display: block;
      background: rgba(255, 255, 255, 0.84);
      backdrop-filter: blur(20px);
    }

    .mobile-menu-inner {
      display: grid;
      gap: 1rem;
    }

    .mobile-menu .nav-button,
    .mobile-menu .btn-gradient {
      width: 100%;
      justify-content: center;
      padding: 0.95rem 1rem;
      text-align: center;
    }

    .hero {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: calc(var(--nav-height) + 2rem) 0 5rem;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(247, 249, 251, 1) 0%, rgba(247, 249, 251, 1) 55%, rgba(224, 241, 248, 0.42) 100%);
    }

    .hero-orb {
      position: absolute;
      border-radius: 999px;
      filter: blur(60px);
      opacity: 0.3;
      pointer-events: none;
      animation: float 8s ease-in-out infinite;
    }

    .hero-orb.orb-right {
      top: 25%;
      right: 15%;
      width: 16rem;
      height: 16rem;
      background: rgba(173, 216, 230, 0.35);
    }

    .hero-orb.orb-left {
      bottom: 25%;
      left: 10%;
      width: 20rem;
      height: 20rem;
      background: rgba(25, 176, 229, 0.12);
      animation-duration: 10s;
      animation-delay: 1s;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
      padding: 0.7rem 1rem;
      border-radius: 999px;
      color: var(--muted-foreground);
      font-size: 0.95rem;
    }

    .hero-badge-dot,
    .contact-bullet-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 999px;
      background-image: var(--gradient-primary);
      animation: pulse 1.8s ease-in-out infinite;
      flex: 0 0 auto;
    }

    .hero-title {
      margin: 0 0 1.5rem;
      font-size: clamp(2.25rem, 6.5vw, 4.5rem);
      font-weight: 600;
      letter-spacing: -0.05em;
      line-height: 1.08;
    }

    .hero-title span {
      display: block;
    }

    .hero-title .hero-accent {
      display: inline;
      font-style: normal;
    }

    .hero-copy {
      max-width: 38rem;
      margin: 0 auto 2.5rem;
      color: var(--muted-foreground);
      font-size: clamp(1.1rem, 2.6vw, 1.3rem);
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .hero-actions a,
    .hero-actions button {
      padding: 1rem 2rem;
      font-size: 1rem;
    }

    .scroll-indicator {
      position: absolute;
      left: 50%;
      bottom: 2rem;
      transform: translateX(-50%);
    }

    .scroll-shell {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      width: 1.5rem;
      height: 2.5rem;
      padding: 0.4rem;
      border: 2px solid rgba(111, 123, 142, 0.3);
      border-radius: 999px;
      animation: bounce 2s ease-in-out infinite;
    }

    .scroll-dot {
      width: 0.25rem;
      border-radius: 999px;
      background: rgba(111, 123, 142, 0.5);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    .section-heading {
      max-width: 42rem;
      margin: 0 auto 4rem;
      text-align: center;
    }

    .section-heading h2,
    .solution-copy h2,
    .contact-copy h2 {
      margin: 1rem 0 0;
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 600;
      letter-spacing: -0.04em;
      line-height: 1.15;
    }

    .challenge-grid,
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .card {
      height: 100%;
      padding: 1.75rem;
      border-radius: 1.5rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover,
    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-elevated);
    }

    .icon-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      margin-bottom: 1rem;
      border-radius: 1rem;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
      color: var(--primary);
      transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    }

    .card:hover .icon-chip,
    .feature-item:hover .icon-chip,
    .step-card:hover .icon-chip {
      transform: scale(1.1);
      background: hsl(225 70% 18%);
      color: #fff;
    }

    .icon-chip svg,
    .hero-actions svg,
    .submit-arrow,
    .menu-toggle svg {
      width: 1.5rem;
      height: 1.5rem;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .card h3,
    .step-card h3,
    .feature-text h3,
    .success-panel h3 {
      margin: 0 0 0.5rem;
      font-size: 1.15rem;
      font-weight: 600;
    }

    .card p,
    .step-card p,
    .feature-text p,
    .solution-copy p,
    .contact-copy p,
    .contact-bullets span,
    .footer-note,
    .success-panel p {
      margin: 0;
      color: var(--muted-foreground);
      line-height: 1.7;
    }

    .solution-grid,
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 4rem;
      align-items: center;
    }

    .contact-grid {
      align-items: start;
    }

    .contact-copy {
      padding-top: 0.5rem;
    }

    .details-intro {
      max-width: 46rem;
      margin: 0 auto 2rem;
      padding: 2rem;
      border-radius: 1.5rem;
      text-align: center;
    }

    .details-intro h2 {
      margin: 1rem 0 0.75rem;
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 600;
      letter-spacing: -0.04em;
      line-height: 1.15;
    }

    .details-intro p {
      margin: 0;
      color: var(--muted-foreground);
      line-height: 1.7;
    }

    .details-grid {
      display: grid;
      gap: 1.5rem;
    }

    .details-grid + .details-grid {
      margin-top: 1.5rem;
    }

    .details-grid-primary {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .details-grid-secondary {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .details-card {
      display: grid;
      gap: 0.9rem;
      padding: 1.75rem;
      border-radius: 1.5rem;
      box-shadow: var(--shadow-soft);
    }

    .details-card-primary {
      min-height: 12rem;
    }

    .details-card-secondary {
      min-height: 9.5rem;
      align-content: start;
    }

    .details-kicker {
      color: rgba(111, 123, 142, 0.8);
      font-size: 0.78rem;
      text-transform: uppercase;
    }

    .details-card h3 {
      margin: 0;
      font-size: 1.4rem;
      font-weight: 600;
      letter-spacing: -0.03em;
    }

    .details-price {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      margin-top: auto;
      padding-top: 1rem;
      border-top: 1px solid rgba(214, 222, 229, 0.9);
    }

    .details-currency {
      color: var(--foreground);
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: -0.03em;
    }

    .details-unit {
      color: var(--muted-foreground);
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .solution-copy p,
    .contact-copy p {
      margin-top: 1.5rem;
      font-size: 1.05rem;
    }

    .feature-list,
    .contact-bullets {
      display: grid;
      gap: 1rem;
      margin-top: 2rem;
    }

    .feature-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem;
      align-items: start;
    }

    .feature-item .icon-chip {
      width: 2.5rem;
      height: 2.5rem;
      margin: 0;
      border-radius: 0.875rem;
    }

    .feature-item .icon-chip svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    .solution-visual img {
      width: 100%;
      border-radius: 1.5rem;
      box-shadow: var(--shadow-soft);
    }

    .steps-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 2rem;
    }

    .step-card {
      position: relative;
      padding: 2rem;
      border-radius: 1.5rem;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .step-card:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 4rem;
      left: calc(100% - 1rem);
      width: calc(2rem + 100% - 6rem);
      height: 1px;
      background: linear-gradient(90deg, rgba(214, 222, 229, 1) 0%, rgba(25, 176, 229, 0.3) 50%, rgba(214, 222, 229, 1) 100%);
      pointer-events: none;
    }

    .step-number,
    .step-examples,
    .heritage-label {
      color: rgba(25, 176, 229, 0.75);
      font-size: 0.8rem;
      font-weight: 500;
    }

    .step-examples,
    .heritage-label {
      color: rgba(111, 123, 142, 0.75);
    }

    .step-card .icon-chip {
      width: 4rem;
      height: 4rem;
      margin: 1rem auto;
      border-radius: 1.25rem;
    }

    .step-card .icon-chip svg {
      width: 1.75rem;
      height: 1.75rem;
    }

    .heritage {
      text-align: center;
    }

    .heritage-inner {
      max-width: 42rem;
      margin: 0 auto;
    }

    .heritage-line {
      width: 3rem;
      height: 2px;
      margin: 0 auto 2rem;
      background: var(--falu);
    }

    .heritage-quote,
    .heritage-copy {
      margin: 0;
      font-size: clamp(1.15rem, 2.5vw, 1.4rem);
      line-height: 1.75;
    }

    .heritage-quote {
      color: var(--muted-foreground);
      font-style: italic;
    }

    .heritage-copy {
      margin-top: 1.5rem;
      font-weight: 500;
    }

    .heritage-meta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 2.5rem;
    }

    .heritage-icon-wrap {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border-radius: 0.75rem;
      background: rgba(160, 40, 29, 0.1);
      color: var(--falu);
    }

    .heritage-icon-wrap svg {
      width: 1rem;
      height: 1rem;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    .contact-bullets div {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .form-card {
      padding: 2rem;
      border-radius: 1.5rem;
    }

    .contact-form {
      display: grid;
      gap: 1.5rem;
    }

    .field {
      display: grid;
      gap: 0.5rem;
    }

    .field label {
      font-size: 0.95rem;
      font-weight: 500;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 0.95rem 1rem;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(247, 249, 251, 1);
      color: var(--foreground);
      outline: none;
      font: inherit;
    }

    .field textarea {
      resize: vertical;
      min-height: 7rem;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(111, 123, 142, 0.8);
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: rgba(25, 176, 229, 0.8);
      box-shadow: 0 0 0 4px rgba(25, 176, 229, 0.14);
    }

    .field select {
      appearance: none;
      background-image:
        linear-gradient(45deg, transparent 50%, rgba(29, 37, 52, 0.65) 50%),
        linear-gradient(135deg, rgba(29, 37, 52, 0.65) 50%, transparent 50%);
      background-position:
        calc(100% - 1.1rem) calc(50% - 0.12rem),
        calc(100% - 0.75rem) calc(50% - 0.12rem);
      background-size: 0.4rem 0.4rem, 0.4rem 0.4rem;
      background-repeat: no-repeat;
      cursor: pointer;
    }

    .form-submit {
      width: 100%;
      padding: 1rem 1.5rem;
    }

    .footer {
      padding: 3rem 0;
      border-top: 1px solid var(--border);
    }

    .footer-main,
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .footer-note {
      max-width: 32rem;
      text-align: right;
      font-size: 0.95rem;
    }

    .footer-bottom {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      color: var(--muted-foreground);
      font-size: 0.95rem;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .footer-links a:hover {
      color: var(--foreground);
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.is-visible,
    .hero .reveal {
      opacity: 1;
      transform: none;
    }

    @keyframes pulse {
      0%,
      100% {
        opacity: 0.6;
      }

      50% {
        opacity: 1;
      }
    }

    @keyframes float {
      0%,
      100% {
        transform: translateY(0);
        opacity: 0.28;
      }

      50% {
        transform: translateY(-20px);
        opacity: 0.5;
      }
    }

    @keyframes bounce {
      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(8px);
      }
    }

    @keyframes scrollPulse {
      0%,
      100% {
        opacity: 0.5;
        height: 0.25rem;
      }

      50% {
        opacity: 1;
        height: 0.5rem;
      }
    }

    @media (max-width: 1024px) {
      .challenge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .solution-grid,
      .contact-grid,
      .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .details-grid-primary {
        grid-template-columns: 1fr;
      }

      .details-grid-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .step-card:not(:last-child)::after {
        display: none;
      }
    }

    @media (max-width: 768px) {
      :root {
        --nav-height: 4.5rem;
      }

      .container-wide,
      .container-tight {
        width: min(100% - 2rem, 1280px);
      }

      .section {
        padding: 4.5rem 0;
      }

      .nav-links {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .hero {
        padding-bottom: 4rem;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions a,
      .hero-actions button {
        width: 100%;
      }

      .footer-main,
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer-note {
        text-align: center;
      }
    }

    @media (max-width: 640px) {
      .challenge-grid {
        grid-template-columns: 1fr;
      }

      .details-intro,
      .details-card {
        padding: 1.5rem;
      }

      .details-grid-secondary {
        grid-template-columns: 1fr;
      }

      .form-card {
        padding: 1.5rem;
      }

      .scroll-indicator {
        display: none;
      }
    }
