
@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-v20-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./fonts/inter-v20-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

    :root {
      --kan-purple: #452B82;
      --kan-pink: #B12391;
      --kan-purple-rgb: 69, 43, 130;
      --kan-pink-rgb: 177, 35, 145;
      --kan-dark: #0f172a;
      --kan-light: #f8fafc;
      --border: #e2e8f0;
      --muted: #64748b;
      --card-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--kan-light);
      color: var(--kan-dark);
      font-weight: 300;
      line-height: 1.6;
    }

    header {
      padding: 18px 40px;
      background: rgba(255, 255, 255, 0.9);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(10px);
    }

    .header-inner,
    .hero-inner,
    .container,
    .footer-inner {
      max-width: 1120px;
      margin: auto;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }


    .logo-link {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }
	
    .logo { height: 50px; }

    .back-top-link {
      color: var(--kan-dark);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 400;
      opacity: 0.8;
    }

    .back-top-link:hover { opacity: 1; }

    nav {
      display: none;
      gap: 22px;
      align-items: center;
    }

    .desktop-nav {
      display: none;
      gap: 22px;
      align-items: center;
    }

    .lang-switch {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-left: 10px;
      padding-left: 14px;
      border-left: 1px solid rgba(15, 23, 42, 0.14);
    }

    nav a,
    nav span {
      margin-left: 10px;
      color: var(--kan-dark);
      text-decoration: none;
      font-size: 0.96rem;
      font-weight: 400;
      opacity: 0.8;
    }

    nav a:hover { opacity: 1; }

    .lang-current {
      opacity: 1;
      font-weight: 600;
    }

    .mobile-menu {
      display: block;
    }

    .mobile-menu details {
      position: relative;
    }

    .mobile-menu summary {
      list-style: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(15, 23, 42, 0.12);
      background: white;
      color: var(--kan-dark);
    }

    .mobile-menu summary::-webkit-details-marker {
      display: none;
    }

    .mobile-menu summary svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .mobile-menu-panel {
      position: absolute;
      right: 0;
      top: calc(100% + 10px);
      min-width: 240px;
      padding: 14px;
      border-radius: 18px;
      background: white;
      border: 1px solid var(--border);
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    }

    .mobile-menu-panel a,
    .mobile-menu-panel span {
      display: block;
      padding: 10px 8px;
      color: var(--kan-dark);
      text-decoration: none;
      font-size: 0.98rem;
      font-weight: 400;
      opacity: 0.9;
    }

    .mobile-menu-panel .lang-switch-mobile {
      margin-top: 8px;
      padding-top: 10px;
      border-top: 1px solid var(--border);
    }

    .mobile-menu-panel .lang-current {
      opacity: 1;
      font-weight: 600;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 100px 40px 90px;
      background: linear-gradient(135deg, var(--kan-purple), var(--kan-pink));
      color: white;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      opacity: 0.18;
      filter: blur(10px);
    }

    .hero::before {
      width: 360px;
      height: 360px;
      background: white;
      top: -120px;
      right: -80px;
    }

    .hero::after {
      width: 260px;
      height: 260px;
      background: #f8fafc;
      bottom: -120px;
      left: -60px;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 36px;
      align-items: center;
    }

    h1 { font-weight: 600; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      font-size: 0.92rem;
      font-weight: 400;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      line-height: 1.12;
      margin: 0 0 16px;
      max-width: 620px;
    }

    .hero p {
      font-size: 1.05rem;
      max-width: 520px;
      margin: 0 0 24px;
      color: rgba(255,255,255,0.92);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .btn {
      display: inline-block;
      background: white;
      color: var(--kan-dark);
      padding: 12px 18px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 400;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
    }

    .btn-secondary {
      background: transparent;
      color: white;
      border: 1px solid rgba(255,255,255,0.28);
      box-shadow: none;
    }

    .hero-visual {
      position: relative;
      min-height: 380px;
    }

    .hero-card {
      position: absolute;
      border-radius: 24px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
      backdrop-filter: blur(16px);
    }

    .hero-card.main {
      inset: 28px 10px 28px 10px;
      padding: 28px;
    }

    .hero-card.small {
      width: 170px;
      padding: 14px 16px;
      right: 0;
      bottom: 0;
    }

    .hero-stat {
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.72);
      margin-bottom: 8px;
      font-weight: 400;
    }

    .hero-value {
      font-size: 1.5rem;
      line-height: 1.15;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .hero-note {
      font-size: 0.96rem;
      color: rgba(255,255,255,0.88);
    }

    .diagram {
      width: 100%;
      height: 100%;
    }

    .container {
      padding: 72px 40px;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-kicker {
      display: inline-block;
      margin-bottom: 10px;
      font-size: 0.86rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--kan-pink);
      font-weight: 400;
    }

    h2 {
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      line-height: 1.15;
      font-weight: 500;
      margin: 0 0 14px;
    }

    .section-intro {
      margin: 0;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .grid {
      display: grid;
      gap: 20px;
    }

    .grid-2,
    .grid-3,
    .grid-asym {
      grid-template-columns: 1fr;
    }

    .card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 24px;
      box-shadow: var(--card-shadow);
    }

    .card h3 {
      font-weight: 400;
      margin: 0 0 10px;
      font-size: 1.15rem;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .card-graphic {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      margin-bottom: 18px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(var(--kan-purple-rgb),0.12), rgba(var(--kan-pink-rgb),0.12));
      color: var(--kan-purple);
    }

    .card-graphic svg {
      width: 26px;
      height: 26px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .section-alt {
      background: white;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .flow {
      display: grid;
      gap: 16px;
    }

    .flow-step {
      position: relative;
      padding: 22px 22px 22px 78px;
      border-radius: 22px;
      background: white;
      border: 1px solid var(--border);
      box-shadow: var(--card-shadow);
    }

    .flow-number {
      position: absolute;
      left: 22px;
      top: 22px;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--kan-purple), var(--kan-pink));
      color: white;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .flow-step h3 {
      margin: 0 0 8px;
      font-size: 1.08rem;
      font-weight: 400;
    }

    .flow-step p {
      margin: 0;
      color: var(--muted);
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .pill {
      padding: 10px 14px;
      border-radius: 999px;
      background: white;
      border: 1px solid var(--border);
      box-shadow: var(--card-shadow);
      font-size: 0.95rem;
      color: var(--kan-dark);
    }

    ul.clean {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 14px;
    }

    ul.clean li {
      position: relative;
      padding-left: 22px;
      color: var(--muted);
    }

    ul.clean li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.68em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--kan-purple), var(--kan-pink));
    }

    .quote-box {
      padding: 28px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(var(--kan-purple-rgb),0.08), rgba(var(--kan-pink-rgb),0.08));
      border: 1px solid rgba(var(--kan-purple-rgb),0.12);
    }

    .quote-box p {
      margin: 0;
      font-size: 1.08rem;
      color: var(--kan-dark);
    }

    /* Portrait */
    .profile-header {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 12px;
    }

    .profile-image {
      width: 88px;
      height: 88px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid white;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    }

    .profile-name {
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--kan-dark);
      margin-bottom: 2px;
    }

    .profile-degree {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.2;
      margin-bottom: 6px;
    }

    .profile-meta {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 400;
      transition: color 0.2s ease, opacity 0.2s ease;
    }

    .social-link:hover {
      color: var(--kan-purple);
      opacity: 1;
    }

    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(var(--kan-purple-rgb),0.12), rgba(var(--kan-pink-rgb),0.12));
      color: var(--kan-purple);
      flex-shrink: 0;
    }

    .social-icon svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .footer-social {
      margin-top: 18px;
    }

    .footer-social .social-link {
      color: white;
      opacity: 0.92;
    }

    .footer-social .social-link:hover {
      color: white;
      opacity: 1;
    }

    .footer-social .social-icon {
      background: rgba(255,255,255,0.14);
      color: white;
    }

    .card-intro {
      margin: 0 0 16px;
      color: var(--muted);
    }

    .logo-grid {
      margin-top: 16px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      align-items: center;
    }

    .logo-grid img {
      display: block;
      width: 100%;
      max-width: 140px;
      max-height: 42px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.85;
    }

    .logo-grid img:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    .cta-panel {
      display: grid;
      gap: 18px;
      align-items: center;
      padding: 30px;
      border-radius: 28px;
      background: linear-gradient(135deg, var(--kan-purple), var(--kan-pink));
      color: white;
      box-shadow: 0 24px 60px rgba(91, 44, 131, 0.22);
    }

    .cta-panel h2,
    .cta-panel p {
      margin: 0;
    }

    .cta-panel p { color: rgba(255,255,255,0.92); }

    .footer {
      background: linear-gradient(135deg, var(--kan-purple), var(--kan-pink));
      color: white;
      padding: 60px 40px;
    }

    .footer-inner {
      display: grid;
      gap: 26px;
      align-items: start;
    }

    .footer-brand img {
      height: 46px;
      margin-bottom: 18px;
    }

    .footer h2 {
      margin-bottom: 16px;
      font-weight: 600;
    }

    .footer p {
      margin: 0;
      line-height: 1.3;
    }

    .footer .email {
      margin-top: 16px;
      display: block;
      color: white;
      text-decoration: none;
      font-weight: 400;
    }

    .footer-meta {
      color: rgba(255,255,255,0.8);
      font-size: 0.95rem;
    }

    .footer-legal {
      margin-top: 16px;
      font-size: 0.85rem;
      opacity: 0.85;
    }

    .footer-legal a {
      color: white;
      text-decoration: none;
      opacity: 0.85;
    }

    .footer-legal a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    .info-table {
      display: grid;
      gap: 12px;
    }

    .info-row {
      display: grid;
      gap: 4px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }

    .info-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }


    .label {
      font-size: 0.9rem;
      color: var(--muted);
      font-weight: 400;
    }

    .value {
      font-size: 1rem;
      color: var(--kan-dark);
      font-weight: 600;
    }

    .spacer-sm {
      height: 20px;
    }

    .section-action {
      margin-top: 34px;
    }

    .grid + .section-action {
      margin-top: 40px;
    }

    .page-action {
      margin-top: 40px;
      text-align: center;
    }
	
    @media (min-width: 860px) {
      .desktop-nav { display: flex; }
      .mobile-menu { display: none; }
      .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
      .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .grid-asym { grid-template-columns: 1.1fr 0.9fr; }
      .cta-panel { grid-template-columns: 1.2fr auto; }
      .footer-inner { grid-template-columns: 1.15fr 0.85fr; }
      .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	  
      .info-row {
        grid-template-columns: 220px 1fr;
        gap: 18px;
        align-items: start;
      }	  
    }

    @media (max-width: 859.98px) {
      .hero-inner,
      .grid-2,
      .grid-3,
      .grid-asym,
      .cta-panel,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: auto;
      }

      .hero-card.small {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        margin-top: 16px;
      }
    }

    @media (max-width: 640px) {
      header,
      .hero,
      .container,
      .footer { padding-left: 20px; padding-right: 20px; }
      .hero { padding-top: 76px; padding-bottom: 72px; }
      .profile-header {
        align-items: flex-start;
      }
    }
