/* GEDRION Design System */
:root {
  --bg-primary: #0a0a0b;
  --bg-secondary: #111113;
  --bg-tertiary: #18181b;
  --bg-elevated: #1c1c1f;
  --bg-card: #141416;
  --text-primary: #f5f5f4;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  --text-muted: #52525b;
  --gold: #c9a227;
  --gold-light: #d4af37;
  --gold-dim: #a88b1f;
  --gold-glow: rgba(201, 162, 39, 0.15);
  --emerald: #0d4f3c;
  --sapphire: #1e3a5f;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(201, 162, 39, 0.25);
  --border-gold: rgba(201, 162, 39, 0.4);
  --font-sans: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;
  --max-width: 1280px;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5, h6 { font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); font-weight: 400; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 500; }
p { color: var(--text-secondary); font-size: 1.0625rem; line-height: 1.7; }
.lead { font-size: 1.25rem; color: var(--text-secondary); max-width: 640px; line-height: 1.65; }
.text-gold { color: var(--gold); }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; }
.section-sm { padding: 4rem 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.section-label::before { content: ""; width: 24px; height: 1px; background: var(--gold); }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); z-index: 1000;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.logo-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo span {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg {
  width: 28px;
  height: 28px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a::after {
  content: ""; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width var(--duration) var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); border-radius: 8px;
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.nav-icon:hover { color: var(--text-primary); background: var(--bg-elevated); }
.nav-icon svg { width: 18px; height: 18px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.02em; border-radius: 6px;
  transition: all var(--duration) var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #0a0a0b; }
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 0 24px var(--gold-glow); }
.btn-secondary {
  background: transparent; color: var(--text-primary); border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--border-gold); background: var(--gold-glow); }
.btn-lg { padding: 1rem 2rem; font-size: 0.9375rem; }

.menu-toggle {
  display: none; width: 40px; height: 40px; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--text-primary);
  transition: all 0.3s var(--ease);
}

            <h1 className="text-4xl md:text-6xl font-extrabold mb-4 tracking-wide">
              GEDRION
            </h1>
            <p className="text-lg md:text-2xl font-light mb-8 text-gray-300">
              Where Ancient Wisdom Meets Future Intelligence
            </p>
            <button className="bg-gold-500 hover:bg-gold-600 text-black font-bold py-3 px-8 rounded-lg transition duration-300 transform hover:scale-105">
              Explore Our Vision
            </button>
          </div>
        </section>
      );
    }

    export default HomePage;

}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-value { font-size: 1.75rem; font-weight: 400; color: var(--text-primary); letter-spacing: -0.02em; }
.stat-label { font-size: 0.8125rem; color: var(--text-tertiary); }

/* Mission */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.mission-text h2 { margin-bottom: 1.5rem; }
.mission-text p { margin-bottom: 1.25rem; }
.mission-visual {
  position: relative; aspect-ratio: 4/3; background: var(--bg-secondary);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.mission-visual-inner {
  width: 80%; height: 80%; border: 1px solid var(--border-gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.mission-visual-inner::before {
  content: ""; position: absolute; width: 60%; height: 60%;
  border: 1px solid rgba(201, 162, 39, 0.2); border-radius: 50%;
}
.mission-visual-inner::after {
  content: "G"; font-size: 4rem; font-weight: 300; color: var(--gold);
  letter-spacing: 0.05em; opacity: 0.8;
}

/* Areas */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.area-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; transition: all var(--duration) var(--ease); position: relative; overflow: hidden;
}
.area-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--duration) var(--ease);
}
.area-card:hover { border-color: var(--border-hover); background: var(--bg-elevated); transform: translateY(-2px); }
.area-card:hover::before { opacity: 1; }
.area-icon { width: 40px; height: 40px; margin-bottom: 1.25rem; color: var(--gold); }
.area-icon svg { width: 100%; height: 100%; }
.area-card h3 { margin-bottom: 0.75rem; font-size: 1.125rem; }
.area-card p { font-size: 0.9375rem; color: var(--text-tertiary); line-height: 1.6; }

/* Projects */
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 2rem; }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.project-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: all var(--duration) var(--ease);
}
.project-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.project-image { aspect-ratio: 16/10; background: var(--bg-secondary); position: relative; overflow: hidden; }
.project-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 50%, var(--bg-elevated) 100%);
  display: flex; align-items: center; justify-content: center;
}
.project-image-placeholder span {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.project-content { padding: 1.75rem; }
.project-tag { font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.project-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.project-card p { font-size: 0.9375rem; color: var(--text-tertiary); }

/* Strip */
.strip { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.strip-item h3 { margin-bottom: 1rem; }
.strip-item p { margin-bottom: 1.5rem; }
.strip-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gold); font-weight: 500; }
.strip-link:hover { color: var(--gold-light); }
.strip-link svg { width: 16px; height: 16px; transition: transform var(--duration) var(--ease); }
.strip-link:hover svg { transform: translateX(3px); }

/* Timeline */
.timeline { position: relative; margin-top: 3rem; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -2rem; top: 0.4rem;
  width: 9px; height: 9px; border-radius: 50%; background: var(--bg-primary);
  border: 1.5px solid var(--gold); transform: translateX(-4px);
}
.timeline-year { font-size: 0.75rem; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.35rem; }
.timeline-item h4 { font-size: 1.0625rem; font-weight: 500; margin-bottom: 0.35rem; }
.timeline-item p { font-size: 0.9375rem; color: var(--text-tertiary); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  padding: 1.75rem; border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg-card); transition: border-color var(--duration) var(--ease);
}
.value-card:hover { border-color: var(--border-hover); }
.value-number { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--text-tertiary); }

/* Stats */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding: 3rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 4rem 0;
}
.stats-bar .stat-value { font-size: 2.5rem; color: var(--text-primary); }
.stats-bar .stat-label { font-size: 0.875rem; margin-top: 0.25rem; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.testimonial-quote { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--bg-elevated);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--gold); font-weight: 500;
}
.author-info h4 { font-size: 0.875rem; font-weight: 500; }
.author-info span { font-size: 0.75rem; color: var(--text-tertiary); }

/* Partners */
.partners-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 3rem; margin-top: 3rem; opacity: 0.5;
}
.partner-logo { font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-tertiary); }

/* Insights */
.insights-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.insight-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: all var(--duration) var(--ease); display: flex; flex-direction: column;
}
.insight-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.insight-card.featured .insight-image { aspect-ratio: 16/9; }
.insight-image { aspect-ratio: 16/10; background: var(--bg-secondary); }
.insight-image-placeholder {
  width: 100%; height: 100%; background: linear-gradient(160deg, var(--bg-tertiary), var(--bg-elevated));
}
.insight-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.insight-meta { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.insight-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; line-height: 1.35; }
.insight-card p { font-size: 0.875rem; color: var(--text-tertiary); flex: 1; }

/* Final CTA */
.final-cta { text-align: center; padding: 6rem 0; position: relative; }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 60%);
  opacity: 0.5; pointer-events: none;
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta .lead { margin: 0 auto 2.5rem; }
.final-cta .hero-ctas { justify-content: center; }

/* Footer */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-tertiary); margin-top: 1rem; max-width: 280px; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.25rem; font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.875rem; color: var(--text-secondary); }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8125rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8125rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--text-secondary); }
.newsletter { margin-top: 1.5rem; }
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.newsletter-form input {
  flex: 1; background: var(--bg-primary); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.65rem 1rem; font-size: 0.875rem; color: var(--text-primary); outline: none;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--border-gold); }
.newsletter-form button {
  padding: 0.65rem 1rem; background: var(--gold); color: #0a0a0b;
  border-radius: 6px; font-size: 0.8125rem; font-weight: 500;
}
.newsletter-form button:hover { background: var(--gold-light); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-card.featured { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mission-grid, .strip-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .projects-header { flex-direction: column; align-items: flex-start; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-bar { grid-template-columns: 1fr; }
}


<a href="index.html" class="logo" aria-label="GEDRION Home">
    <img src="./logo.svg"
         alt="GEDRION Logo"
         style="width:100px;height:100px;border:2px solid red;">
    <span>GEDRION</span>
</a>
}

.logo span{
    color:#f5f5f4;
    font-size:1.125rem;
    font-weight:500;
    letter-spacing:.08em;
}
.logo-image {
    width: 100px;
    height: 100px;
}
/* GEDRION Background Logo */
body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background-image: url("logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translate(-50%, -50%);
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}

/* keep website content above logo */
body > * {
    position: relative;
    z-index: 1;
}
