@font-face {
    font-family: 'PP Mori';
    src: url('/assets/fonts/ppmori/PPMori-Extralight.woff2') format('woff2'),
         url('/assets/fonts/ppmori/PPMori-Extralight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'PP Mori';
    src: url('/assets/fonts/ppmori/PPMori-ExtralightItalic.woff2') format('woff2'),
         url('/assets/fonts/ppmori/PPMori-ExtralightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'PP Mori';
    src: url('/assets/fonts/ppmori/PPMori-Regular.woff2') format('woff2'),
         url('/assets/fonts/ppmori/PPMori-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'PP Mori';
    src: url('/assets/fonts/ppmori/PPMori-RegularItalic.woff2') format('woff2'),
         url('/assets/fonts/ppmori/PPMori-RegularItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'PP Mori';
    src: url('/assets/fonts/ppmori/PPMori-SemiBold.woff2') format('woff2'),
         url('/assets/fonts/ppmori/PPMori-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }

body {
    margin: 0;
    background: #0d0d0d;
    font-family: 'PP Mori', sans-serif;
    scroll-behavior: smooth;
  }
  
  .section {
    min-height: 100vh;
    padding: 8vh 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  h1, h2 {
    font-family: 'PP Mori', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  
  
  p {
    max-width: 600px;
    font-size: 1.125rem;
    opacity: 0.9;
  }
  
  .highlight {
    color: #ffd700;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1000px;
  }
  
  .card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 0 1px #333;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-4px);
  }
  
  ol {
    list-style: decimal inside;
    max-width: 700px;
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.8;
  }



/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
  }
  
  .hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }
  
  .hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 500px;
  }
  
  .cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
  }
  
  .cta-primary:hover {
    background: transparent;
    color: #1a1a1a;
  }
  
  .hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
  }
  
  .floating-element {
    width: 100%;
    height: 100%;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }
  
  /* Intro Section */
  .intro {
    padding: 6rem 0;
    background: #fff;
  }
  
  .intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1a1a1a;
  }
  
  .intro-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
  }
  
  .highlight-box {
    padding: 2rem;
    border: 1px solid #e5e5e5;
    background: #fafafa;
  }
  
  .highlight-number {
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
  }
  
  .highlight-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  /* Section Headers */
  .section-header {
    margin-bottom: 4rem;
  }
  
  .section-number {
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    max-width: 600px;
  }
  
  /* Technology Section */
  .technology {
    padding: 6rem 0;
    background: #fafafa;
  }
  
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
  }
  
  .tech-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border: 1px solid #e5e5e5;
  }
  
  .tech-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .tech-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .tech-item p {
    color: #666;
    line-height: 1.6;
  }
  
  /* Experience Section */
  .experience {
    padding: 6rem 0;
    background: #fff;
  }
  
  .experience-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .experience-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .experience-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  
  .visual-element {
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
  }
  
  /* Applications Section */
  .applications {
    padding: 6rem 0;
    background: #fafafa;
  }
  
  .apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .app-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
  }
  
  .app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .app-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .app-card p {
    color: #666;
    line-height: 1.6;
  }
  
  /* Process Section */
  .process {
    padding: 6rem 0;
    background: #fff;
  }
  
  .process-steps {
    display: grid;
    gap: 3rem;
  }
  
  .process-step {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 3rem;
  }
  
  .process-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .step-header {
    margin-bottom: 1.5rem;
  }
  
  .step-number {
    font-size: 0.875rem;
    color: #999;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .step-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .process-step p {
    color: #666;
    line-height: 1.7;
    max-width: 700px;
  }
  
  /* Philosophy Section */
  .philosophy {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
  }
  
  .philosophy-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .philosophy h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .philosophy p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
  }
  .container {
    padding: 50px;
}
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero {
      text-align: center;
      padding: 4rem 1rem;
    }
    
    .hero-visual {
      display: none;
    }
    
    .intro-grid,
    .experience-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .section-header h2 {
      font-size: 2rem;
    }
    
    .tech-grid,
    .apps-grid {
      grid-template-columns: 1fr;
    }
    
    .container {
      padding: 0 1rem;
    }
  }