@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;600&display=swap');

:root {
  --agh-color-bg: #0A0D14;
  --agh-color-surface: #121824;
  --agh-color-surface-hover: #1A2233;
  --agh-color-primary: #FF7020;
  --agh-color-secondary: #0077FF;
  --agh-color-text-main: #F2F4F8;
  --agh-color-text-muted: #9AA4B8;
  --agh-color-border: rgba(255, 255, 255, 0.08);
  
  --agh-font-serif: 'Playfair Display', serif;
  --agh-font-sans: 'Plus Jakarta Sans', sans-serif;
  
  --agh-spacing-sm: 1rem;
  --agh-spacing-md: 2rem;
  --agh-spacing-lg: 4rem;
  --agh-spacing-xl: 6rem;
  
  --agh-radius: 12px;
  --agh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--agh-font-sans);
  background-color: var(--agh-color-bg);
  color: var(--agh-color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--agh-font-serif);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--agh-transition);
}

.agh-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--agh-spacing-md);
}

/* Header */
.agh-top-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 13, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--agh-color-border);
  z-index: 100;
  padding: var(--agh-spacing-sm) 0;
}

.agh-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agh-brand-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.agh-logo-abbr {
  font-family: var(--agh-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--agh-color-primary);
  border: 1px solid var(--agh-color-primary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.agh-brand-text {
  display: flex;
  flex-direction: column;
}

.agh-brand-name {
  font-family: var(--agh-font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--agh-color-text-main);
}

.agh-brand-sub {
  font-size: 0.75rem;
  color: var(--agh-color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.agh-nav-badge {
  background: var(--agh-color-primary);
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

/* Hero Section */
.agh-hero-showcase {
  padding-top: calc(80px + var(--agh-spacing-xl));
  padding-bottom: var(--agh-spacing-xl);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 20%, rgba(255, 112, 32, 0.1) 0%, transparent 60%);
}

.agh-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.agh-kicker {
  display: inline-block;
  color: var(--agh-color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--agh-spacing-md);
  border-bottom: 1px solid var(--agh-color-primary);
  padding-bottom: 0.25rem;
}

.agh-hero-title {
  font-size: 4rem;
  margin-bottom: var(--agh-spacing-md);
  color: #fff;
}

.agh-hero-desc {
  font-size: 1.25rem;
  color: var(--agh-color-text-muted);
  margin-bottom: var(--agh-spacing-xl);
}

.agh-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--agh-spacing-md);
}

.agh-info-chip {
  background: var(--agh-color-surface);
  border: 1px solid var(--agh-color-border);
  padding: var(--agh-spacing-md);
  border-radius: var(--agh-radius);
  transition: var(--agh-transition);
}

.agh-info-chip:hover {
  transform: translateY(-5px);
  border-color: var(--agh-color-primary);
  background: var(--agh-color-surface-hover);
}

.agh-chip-label {
  font-size: 0.75rem;
  color: var(--agh-color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.agh-chip-value {
  font-family: var(--agh-font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

/* Sections */
.agh-section {
  padding: var(--agh-spacing-xl) 0;
  border-top: 1px solid var(--agh-color-border);
}

.agh-section-header {
  text-align: center;
  margin-bottom: var(--agh-spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.agh-section-title {
  font-size: 2.5rem;
  margin-bottom: var(--agh-spacing-sm);
}

.agh-section-desc {
  color: var(--agh-color-text-muted);
  font-size: 1.125rem;
}

.agh-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--agh-spacing-md);
}

.agh-feature-box {
  background: var(--agh-color-surface);
  border: 1px solid var(--agh-color-border);
  padding: var(--agh-spacing-lg) var(--agh-spacing-md);
  border-radius: var(--agh-radius);
  transition: var(--agh-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.agh-feature-box:hover {
  background: var(--agh-color-surface-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.agh-feature-kicker {
  font-size: 0.75rem;
  color: var(--agh-color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.agh-feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.agh-feature-text {
  color: var(--agh-color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.agh-feature-list {
  list-style: none;
  padding-top: 1rem;
  border-top: 1px solid var(--agh-color-border);
}

.agh-feature-list li {
  color: var(--agh-color-text-main);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.agh-feature-list li::before {
  content: '→';
  color: var(--agh-color-primary);
  margin-right: 0.75rem;
}

/* Footer */
.agh-site-footer {
  background: #05070a;
  padding: var(--agh-spacing-xl) 0 var(--agh-spacing-md);
  border-top: 1px solid var(--agh-color-border);
}

.agh-footer-brand {
  text-align: center;
  margin-bottom: var(--agh-spacing-xl);
}

.agh-footer-slogan {
  font-family: var(--agh-font-serif);
  font-size: 2rem;
  color: #fff;
}

.agh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--agh-spacing-lg);
  margin-bottom: var(--agh-spacing-xl);
}

.agh-footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #fff;
}

.agh-footer-col p {
  color: var(--agh-color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.agh-contact-list {
  list-style: none;
}

.agh-contact-list li {
  color: var(--agh-color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.agh-nav-links {
  list-style: none;
}

.agh-nav-links li {
  margin-bottom: 0.5rem;
}

.agh-nav-links a {
  color: var(--agh-color-text-muted);
  font-size: 0.9rem;
}

.agh-nav-links a:hover {
  color: var(--agh-color-primary);
}

.agh-footer-bottom {
  text-align: center;
  padding-top: var(--agh-spacing-md);
  border-top: 1px solid var(--agh-color-border);
  color: var(--agh-color-text-muted);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
  .agh-hero-title { font-size: 3rem; }
  .agh-hero-grid, .agh-feature-grid { grid-template-columns: 1fr; }
  .agh-footer-grid { grid-template-columns: 1fr; gap: var(--agh-spacing-md); }
}
@media (max-width: 768px) {
  .agh-hero-title { font-size: 2.5rem; }
}
