:root {
    --orange: #FF5F1F;
    --black: #111111;
    --off-black: #1a1a1a;
    --white: #ffffff;
    --gray: #f4f4f4;
    --border: 1px solid #e5e5e5;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden; /* Prevents scrollbar from animations */
}

/* Watermark (Tero-Tech) */
.watermark::before{
  content: "Tero-Tech";
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  display: grid !important;
  place-items: center;
  font-size: clamp(52px, 12vw, 160px);
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(17, 17, 17, .70);
  -webkit-text-stroke: 1px rgba(17, 17, 17, .30);
  text-stroke: 1px rgba(17, 17, 17, .30);
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
  transform: rotate(-18deg);
  pointer-events: none !important;
  z-index: 999999 !important;
}
.watermark *{ position: relative; z-index: auto; }

/* Navbar Tweaks */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
}

.logo { font-size: 1.5rem; letter-spacing: -0.5px; font-weight: 900; }
.logo .dot { color: var(--orange); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { text-decoration: none; color: var(--black); font-weight: 600; font-size: 0.95rem; transition: color 0.3s;}
.nav-links a:hover { color: var(--orange); }

.btn-orange {
    background: var(--orange);
    color: var(--white) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px; /* Modern pill shape */
    transition: transform 0.2s ease;
}
.btn-orange:hover { transform: scale(1.05); }

/* Hero Section with Animation */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 90vh;
    align-items: center;
    padding: 0 0 0 5%;
    overflow: hidden;
}

.hero-content { padding-right: 2rem; }
.label-pill {
    display: inline-block;
    background: var(--gray);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.text-orange { color: var(--orange); }

.hero-btns { margin-top: 2.5rem; display: flex; gap: 2rem; align-items: center; }

.btn-main {
    background: var(--black);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}
.btn-main:hover { background: var(--orange); }

.btn-text { text-decoration: none; color: var(--black); font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }

/* Visual Side of Hero */
.hero-visual {
    height: 100%;
    position: relative;
    background: var(--gray);
}

.image-block {
    width: 100%;
    height: 100%;
    /* Placeholder for actual image */
    background: url('https://images.unsplash.com/photo-1504660069766-98a4421b88e1?auto=format&fit=crop&q=80') center/cover;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.floating-card {
    position: absolute;
    bottom: 10%;
    left: 5%;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-left: 5px solid var(--orange);
}
.floating-card h4 { font-size: 2rem; font-weight: 900; }

/* Marquee Ticker */
.marquee-container {
    background: var(--black);
    color: var(--white);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Focus Grid Section */
.focus-section { padding: 6rem 5%; background: var(--white); }
.section-header { margin-bottom: 4rem; max-width: 600px; }
.section-header h2 { font-size: 3rem; font-weight: 900; margin-bottom: 1rem; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    border: 1px solid #eaeaea;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    top: 0;
}

.card:hover {
    border-color: var(--black);
    top: -10px;
    box-shadow: 10px 10px 0px var(--orange); /* The Pop Art Shadow */
}

.icon { font-size: 2.5rem; color: var(--orange); margin-bottom: 1.5rem; }
.card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.link-arrow {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    margin-top: 1.5rem;
    display: inline-block;
}

/* Story Section */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--black);
    color: var(--white);
}

.story-content {
    padding: 6rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 { font-size: 2.5rem; line-height: 1.4; margin-bottom: 2rem; }
.author { color: var(--orange); font-weight: bold; margin-bottom: 3rem; }

.btn-white {
    align-self: flex-start;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.btn-white:hover { background: var(--white); color: var(--black); }

.story-image {
    background: url('https://images.unsplash.com/photo-1542319088-294711933092?auto=format&fit=crop&q=80') center/cover;
    min-height: 500px;
}

/* Footer */
footer { padding: 4rem 5%; border-top: 1px solid #eaeaea; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.footer-brand h4 { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--black); text-decoration: none; }

.newsletter form { display: flex; margin-top: 1rem; }
.newsletter input {
    padding: 10px;
    border: 1px solid var(--black);
    background: none;
    outline: none;
}
.newsletter button {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0 1.5rem;
    cursor: pointer;
}

/* Animation Helper */
.fade-in-up { animation: fadeInUp 1s ease-out; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .hero, .story-section { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr; }
}