@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

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

body {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    background: #ffffff;
    color: #0c1a30;
    line-height: 1.6;
    position: relative;
    font-weight: 500;
    letter-spacing: -0.02em;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, #1c4d9c 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #2a5bb3 0%, transparent 50%);
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

.header {
    background: #0c1a30;
    padding: 1rem 2rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #c0c0c0;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom,
        #ffffff 0%,
        #ffffff 0.4px,
        #1c4d9c 0.4px,
        #1c4d9c calc(100% - 0.4px),
        #ffffff calc(100% - 0.4px),
        #ffffff 100%
    );
    z-index: 10;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 200;
    font-family: "Space Grotesk", sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    letter-spacing: -0.03em;
}

.nav {
    margin-top: 0.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: #c0c0c0;
    color: #ffffff;
    text-decoration: none;
}

html, body {
    margin: 0;
    padding: 0;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
}

.about-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem 2rem;
    margin-top: calc(3rem + 10px);
    margin-bottom: calc(2rem + 10px);
}

.section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(28, 77, 156, 0.1);
    border-left: 4px solid #1c4d9c;
    backdrop-filter: blur(20px);
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(28, 77, 156, 0.08);
}

.section:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(28, 77, 156, 0.15);
    transform: translateY(-2px);
    border-left-color: #2a5bb3;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1c4d9c, #2a5bb3, #1c4d9c);
    transition: all 0.4s ease;
}

.section:hover::before {
    background: linear-gradient(180deg, #2a5bb3, #4f8ff7, #2a5bb3);
    box-shadow: 0 0 20px rgba(28, 77, 156, 0.3);
}

.section h2 {
    font-size: 1.5rem;
    color: #1c4d9c;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
    position: relative;
}

.section p, .section ul {
    font-size: 1.2rem;
    color: #0c1a30;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section ul {
    padding-left: 0;
    list-style-type: none;
    margin: 0;
}

.section li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(28, 77, 156, 0.15);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #1c4d9c;
    font-weight: bold;
    transition: all 0.3s ease;
}

.section li:hover {
    padding-left: 2.5rem;
    color: #0c1a30;
    transform: translateX(5px);
    background: rgba(28, 77, 156, 0.05);
    margin: 0 -1rem;
    border-radius: 0;
}

.section li:hover::before {
    transform: scale(1.2);
    color: #1c4d9c;
}

.section li:last-child {
    border-bottom: none;
}

.section strong {
    color: #1c4d9c;
    font-weight: 600;
}

@keyframes hexagon-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes hexagon-rotate-fast {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.6; transform: scaleX(0.9); }
    50% { opacity: 1; transform: scaleX(1); }
}

@keyframes pulse-line-gray {
    0%, 100% { opacity: 0.6; transform: scaleX(0.9); }
    50% { opacity: 1; transform: scaleX(1); }
}

.section-title {
    font-size: 0.875rem;
    color: #1c4d9c;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: "Space Grotesk", sans-serif;
}

/* CodeViz gradient text effect for headings */
.codeviz-heading {
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, rgba(12, 26, 48, 0.6), rgb(12, 26, 48), rgba(12, 26, 48, 0.6));
    color: rgba(0, 0, 0, 0);
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.612px;
    line-height: 45.9667px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    font-family: "Space Grotesk", sans-serif;
}

.subtitle {
    font-size: 1.125rem;
    color: #0c1a30;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
}

.body-text {
    font-size: 1rem;
    color: #0c1a30;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.quote {
    font-size: 1.25rem;
    color: #0c1a30;
    font-style: italic;
    padding: 2rem;
    background: rgba(28, 77, 156, 0.08);
    border-left: 4px solid #1c4d9c;
    border-radius: 0;
    margin: 2rem 0;
    position: relative;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
}

.quote::before {
    content: '"';
    font-size: 3rem;
    color: #1c4d9c;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-weight: bold;
}

.highlight {
    background: rgba(28, 77, 156, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: #0c1a30;
    font-weight: 600;
}

/* Target audience section - more natural flowing design */
.target-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(28, 77, 156, 0.1);
    border-left: 4px solid #1c4d9c;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(28, 77, 156, 0.08);
}

.target-section:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.95) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(28, 77, 156, 0.15);
    border-left-color: #2a5bb3;
}

.target-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1c4d9c, #2a5bb3, #1c4d9c);
    transition: all 0.4s ease;
}

.target-section:hover::before {
    background: linear-gradient(180deg, #2a5bb3, #4f8ff7, #2a5bb3);
    box-shadow: 0 0 20px rgba(28, 77, 156, 0.3);
}

.target-section h2 {
    margin: 0 0 2rem;
    font-size: 1.4rem;
    color: #1c4d9c;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.target-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 2rem;
    border: 1px solid rgba(28, 77, 156, 0.1);
    border-left: 3px solid #1c4d9c;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    backdrop-filter: blur(15px);
    border-radius: 0;
    box-shadow: 0 2px 15px rgba(28, 77, 156, 0.08);
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #1c4d9c, #2a5bb3);
    transition: all 0.3s ease;
}

.target-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2a5bb3, #4f8ff7);
    transition: width 0.6s ease;
}

.target-card:hover {
    transform: translateY(-4px) translateX(8px);
    box-shadow: 0 6px 25px rgba(28, 77, 156, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    border-left-color: #2a5bb3;
}

.target-card:hover::before {
    background: linear-gradient(180deg, #2a5bb3, #4f8ff7);
    box-shadow: 0 0 15px rgba(28, 77, 156, 0.4);
}

.target-card:hover::after {
    width: 100%;
}

.target-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.target-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.target-card:hover .target-icon {
    transform: scale(1.1);
}

.target-card:hover .target-icon path,
.target-card:hover .target-icon rect,
.target-card:hover .target-icon polygon,
.target-card:hover .target-icon line,
.target-card:hover .target-icon circle {
    fill: #1c4d9c;
    stroke: #1c4d9c;
}

.target-card h3 {
    margin: 0 0 0.5rem;
    color: #1c4d9c;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
    position: relative;
}


.target-card:hover h3::before {
    background: linear-gradient(45deg, #f0f0f0, #ffffff);
    box-shadow: 0 0 8px rgba(192, 192, 192, 0.4);
    transform: translateY(-50%) scale(1.2);
}

.target-card p {
    margin: 0;
    font-size: 1.02rem;
    color: #0c1a30;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

/* Technology Section - flowing natural design */
.tech-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 3rem 2.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(28, 77, 156, 0.1);
    border-left: 4px solid #1c4d9c;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(20px);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(28, 77, 156, 0.08);
    overflow: visible;
}

.tech-highlight:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.95) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(28, 77, 156, 0.15);
    border-left-color: #2a5bb3;
}

.tech-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1c4d9c, #2a5bb3, #1c4d9c);
    transition: all 0.4s ease;
}

.tech-highlight:hover::before {
    background: linear-gradient(180deg, #2a5bb3, #4f8ff7, #2a5bb3);
    box-shadow: 0 0 20px rgba(28, 77, 156, 0.3);
}

.tech-highlight::after {
    display: none;
}

.tech-highlight h3 {
    margin: 0 0 2rem;
    font-size: 1.4rem;
    color: #1c4d9c;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

/* Clean tech features with fast enlarging */
.tech-features {
    display: flex;
    gap: 0;
    position: relative;
    z-index: 2;
}

.tech-feature {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(28, 77, 156, 0.1);
    border-left: 3px solid #1c4d9c;
    transition: all 0.15s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    backdrop-filter: blur(15px);
    border-radius: 0;
    margin-right: 1rem;
}

.tech-feature:last-child {
    margin-right: 0;
}

.tech-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #1c4d9c, #2a5bb3);
    transition: all 0.3s ease;
}

.tech-feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2a5bb3, #4f8ff7);
    transition: width 0.6s ease;
}

.tech-feature:hover {
    transform: translateY(-4px) translateX(6px);
    box-shadow: 0 6px 25px rgba(28, 77, 156, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    border-left-color: #2a5bb3;
}

.tech-feature:hover::before {
    background: linear-gradient(180deg, #2a5bb3, #4f8ff7);
    box-shadow: 0 0 15px rgba(28, 77, 156, 0.4);
}

.tech-feature:hover::after {
    width: 100%;
}

.tech-feature strong {
    color: #1c4d9c;
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 3;
}


.tech-feature:hover strong::after {
    width: 50px;
    background: linear-gradient(90deg, #f0f0f0, #ffffff);
}

.tech-feature span {
    font-size: 1.02rem;
    color: #0c1a30;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.4;
    position: relative;
    z-index: 3;
}

/* Premium section - elegant flowing design with silver */

/* Premium section - styled like techy tape with gray colors */
.premium {
  margin-bottom: 3rem;
  background: #ffffff;
  padding: 2.5rem;
  border: 2px solid #9ca3af;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 32px rgba(156, 163, 175, 0.1);
}

.premium:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 0.95) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(192, 192, 192, 0.2);
    border-left-color: #d3d3d3;
}

.premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #9ca3af, #6b7280, #9ca3af);
}

.premium:hover::before {
    background: linear-gradient(180deg, #d3d3d3, #ffffff, #d3d3d3);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.premium::after {
  content: 'PREMIUM';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #6b7280;
  color: white;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 0px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-family: "Space Grotesk", sans-serif;
}

.premium h2 {
    color: #1c4d9c;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
}

.premium p {
    font-size: 1.2rem;
    color: #0c1a30;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.premium-features {
    display: flex;
    gap: 0;
    margin-top: 1rem;
}

.premium-features ul {
  flex: 1;
  margin: 0;
  padding: 2rem 1.5rem;
  list-style-type: none;
  background: #ffffff;
  border: 2px solid #9ca3af;
  border-right: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  box-shadow: none;
}

.premium-features ul:first-child {
  border-radius: 0;
}

.premium-features ul:last-child {
  border-right: 2px solid #9ca3af;
  border-radius: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  box-shadow: 0 8px 32px rgba(156, 163, 175, 0.1);
}

.premium-features ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #9ca3af, #6b7280, #9ca3af);
  animation: pulse-line-gray 2s ease-in-out infinite;
}

.premium-features ul::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d3d3d3, #f0f0f0);
    transition: width 0.6s ease;
}

.premium-features ul:hover {
    transform: translateY(-4px) translateX(6px);
    box-shadow: 0 6px 25px rgba(192, 192, 192, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    border-left-color: #d3d3d3;
}

.premium-features ul:hover::before {
    background: linear-gradient(180deg, #d3d3d3, #ffffff);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

.premium-features ul:hover::after {
    width: 100%;
}

.premium-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.3);
    color: #0c1a30;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.premium-features li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: #c0c0c0;
    font-weight: bold;
}

.premium-features li:hover {
    transform: translateY(-2px);
    color: #0c1a30;
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.1), rgba(240, 240, 240, 0.05));
    margin: 0 -1rem;
    padding-left: 3.5rem;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.premium-features li:last-child {
    border-bottom: none;
}

.company-info p {
    margin: 0;
    font-size: 1.32rem;
    color: #0c1a30;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.company-info strong {
    color: #1c4d9c;
}

.footer {
    background: #0c1a30;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 1.14rem;
    border-top: 1px solid #c0c0c0;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom,
        #ffffff 0%,
        #ffffff 0.4px,
        #1c4d9c 0.4px,
        #1c4d9c calc(100% - 0.4px),
        #ffffff calc(100% - 0.4px),
        #ffffff 100%
    );
    z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-container {
        margin: 2rem auto;
        padding: 0 1rem 2rem;
    }
    
    .section, .target-section {
        padding: 1.5rem;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        flex-direction: column;
    }
    
    .tech-feature {
        border-right: 2px solid #1c4d9c;
        border-bottom: none;
    }
    
    .tech-feature:last-child {
        border-bottom: 2px solid #1c4d9c;
    }
  }