/* =============================================
   AgriData — styles.css
   Brand: #0a2a2b (dark teal) | #57ad47 (green)
============================================= */

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:   #0a2a2b;
  --dark2:  #0f3536;
  --green:  #57ad47;
  --green2: #4a9940;
  --light:  #f4f8f4;
  --gray:   #6b7280;
  --white:  #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(10,42,43,.10);
  --transition: .25s ease;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--gray); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}

/* --- Layout helpers --- */
.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

section { padding: 100px 0; }

/* =============================================
   NAVBAR
============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(10,42,43,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: min(1180px, 92%);
  margin-inline: auto;
}

.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }

/* language switcher */
.lang-switcher {
  display: flex;
  gap: .3rem;
  margin-left: 1.5rem;
}

.lang-btn {
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 6px;
  padding: .2rem .55rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .04em;
  transition: all var(--transition);
}

.lang-btn:hover { color: var(--dark); border-color: rgba(10,42,43,.2); }
.lang-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-hero { background: transparent; }
.nav-hero .nav-links a { color: rgba(255,255,255,.85); }
.nav-hero .nav-links a:hover { color: var(--white); }
.nav-hero .hamburger span { background: var(--white); }
.nav-hero .lang-btn { color: rgba(255,255,255,.7); }
.nav-hero .lang-btn:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
.nav-hero .lang-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }

/* mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .5rem;
  background: var(--white);
  padding: 1.25rem 1.5rem 1.75rem;
  border-top: 1px solid rgba(10,42,43,.06);
  box-shadow: 0 8px 24px rgba(10,42,43,.10);
}

.mobile-menu.open { display: flex; }
.mobile-menu a { padding: .6rem 0; font-weight: 500; border-bottom: 1px solid rgba(10,42,43,.06); }
.mobile-menu .lang-switcher { margin-left: 0; margin-top: .5rem; }

/* =============================================
   HERO
============================================= */
#hero {
  min-height: 100vh;
  position: relative;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

/* Animated background layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #06191a 0%, #0a2a2b 40%, #0d3233 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .45;
  will-change: transform;
}

.hero-blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(87,173,71,.6) 0%, transparent 70%);
  top: -10%; right: -5%;
  animation: blobDrift1 18s ease-in-out infinite;
}

.hero-blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,120,130,.5) 0%, transparent 70%);
  bottom: -15%; left: -8%;
  animation: blobDrift2 22s ease-in-out infinite;
}

.hero-blob--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(87,173,71,.35) 0%, transparent 70%);
  top: 50%; left: 45%;
  animation: blobDrift3 15s ease-in-out infinite;
}

/* Noise texture  overlay for depth */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Subtle vignette */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 40%, rgba(6,25,26,.6) 100%);
}

@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-40px, 30px) scale(1.08); }
  66%      { transform: translate(20px, -20px) scale(.95); }
}

@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(50px, -30px) scale(1.1); }
  66%      { transform: translate(-30px, 40px) scale(.92); }
}

@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-60px, -40px) scale(1.15); }
}

#hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero-content {
  max-width: 600px;
}

#hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

#hero h1 span { color: var(--green); }

#hero p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================
   HERO — Molecular network illustration
============================================= */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mol-network {
  position: relative;
  width: 400px;
  height: 400px;
}

.mol-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mol-node {
  position: absolute;
  border-radius: 50%;
  background: rgba(87,173,71,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mol-ring {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(87,173,71,.4);
}

/* Core node */
.mol-n1 {
  width: 56px; height: 56px;
  top: calc(180px - 28px); left: calc(200px - 28px);
  background: rgba(87,173,71,.3);
  animation: molPulse 4s ease-in-out infinite;
}
.mol-n1 .mol-ring {
  width: 60%;
  height: 60%;
  box-shadow: 0 0 30px rgba(87,173,71,.6), 0 0 60px rgba(87,173,71,.2);
}

/* Outer nodes */
.mol-n2 {
  width: 32px; height: 32px;
  top: calc(80px - 16px); left: calc(120px - 16px);
  animation: molFloat1 6s ease-in-out infinite;
}
.mol-n3 {
  width: 28px; height: 28px;
  top: calc(100px - 14px); left: calc(310px - 14px);
  animation: molFloat2 7s ease-in-out infinite;
}
.mol-n4 {
  width: 24px; height: 24px;
  top: calc(240px - 12px); left: calc(80px - 12px);
  animation: molFloat3 8s ease-in-out infinite;
}
.mol-n5 {
  width: 36px; height: 36px;
  top: calc(260px - 18px); left: calc(320px - 18px);
  animation: molFloat1 5s ease-in-out infinite;
}
.mol-n6 {
  width: 22px; height: 22px;
  top: calc(340px - 11px); left: calc(150px - 11px);
  animation: molFloat2 9s ease-in-out infinite;
}
.mol-n7 {
  width: 20px; height: 20px;
  top: calc(360px - 10px); left: calc(300px - 10px);
  animation: molFloat3 7s ease-in-out infinite;
}

/* Floating labels */
.mol-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(10,42,43,.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(87,173,71,.2);
  border-radius: 20px;
  padding: .35rem .75rem;
  white-space: nowrap;
}

.mol-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.mol-lbl1 {
  top: 48px; left: 20px;
  animation: molLblFloat 5s ease-in-out infinite;
}
.mol-lbl2 {
  top: 190px; right: -10px;
  animation: molLblFloat 6s ease-in-out 1s infinite;
}
.mol-lbl3 {
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  animation: molLblFloat 7s ease-in-out 2s infinite;
}

@keyframes molPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}

@keyframes molFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(6px, -8px); }
}

@keyframes molFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-8px, 5px); }
}

@keyframes molFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(5px, 7px); }
}

@keyframes molLblFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.mol-lbl3 {
  animation: molLbl3Float 7s ease-in-out 2s infinite;
}
@keyframes molLbl3Float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green2);
  border-color: var(--green2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(87,173,71,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark2);
  border-color: var(--dark2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10,42,43,.25);
}

/* =============================================
   SERVICES
============================================= */
#services { background: var(--light); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header p {
  max-width: 560px;
  margin: .75rem auto 0;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10,42,43,.14); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(87,173,71,.12), rgba(87,173,71,.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg { width: 28px; height: 28px; stroke: var(--green); fill: none; stroke-width: 1.8; }

.service-card h3 { color: var(--dark); margin-bottom: .75rem; }
.service-card p  { font-size: .95rem; line-height: 1.65; }

/* =============================================
   ABOUT
============================================= */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p   { margin-bottom: 1rem; font-size: 1.05rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: var(--light);
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label { font-size: .85rem; color: var(--gray); font-weight: 500; }

.about-visual {
  position: relative;
}

.about-card-stack {
  position: relative;
  height: 420px;
}

.about-card {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card-main {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}

.about-card-main .big-icon {
  width: 80px; height: 80px;
  background: rgba(87,173,71,.15);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
}

.about-card-main .big-icon svg { width: 40px; height: 40px; stroke: var(--green); fill: none; stroke-width: 1.5; }

.about-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  background: var(--green);
  border-radius: var(--radius);
  opacity: .12;
  z-index: -1;
}

.about-dot-grid {
  position: absolute;
  top: -20px; left: -20px;
  width: 160px; height: 160px;
  background-image: radial-gradient(circle, rgba(10,42,43,.15) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  z-index: -1;
}

/* =============================================
   CONTACT
============================================= */
#contact { background: var(--light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { font-size: 1.05rem; margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(10,42,43,.08);
}

.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 1.8; }
.contact-detail-text { font-size: .9rem; color: var(--gray); line-height: 1.5; }
.contact-detail-text strong { display: block; color: var(--dark); font-weight: 600; margin-bottom: .15rem; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .45rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(10,42,43,.12);
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(87,173,71,.15);
}

.form-group textarea { min-height: 130px; }

.form-submit { width: 100%; }

.form-success {
  display: none;
  background: rgba(87,173,71,.1);
  border: 1.5px solid rgba(87,173,71,.3);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: var(--green2);
  font-weight: 600;
  font-size: .95rem;
  margin-top: 1rem;
  text-align: center;
}

.form-success.show { display: block; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo img { height: 28px; filter: brightness(0) invert(1); }

.footer-text { font-size: .875rem; }
.footer-text p:first-child { color: rgba(255,255,255,.5); font-size: .8rem; margin-bottom: .2rem; }

.footer-right { font-size: .8rem; color: rgba(255,255,255,.4); }

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--green); }

/* =============================================
   LEGAL PAGES
============================================= */
.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: .5rem;
}

.legal-updated {
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.legal-page p,
.legal-page li {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--gray);
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page li { margin-bottom: .35rem; }

.legal-page a { color: var(--green); text-decoration: underline; }
.legal-page a:hover { color: var(--green2); }

/* =============================================
   404 PAGE
============================================= */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 72px;
}

.page-404 .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-404 h1 { margin-bottom: 1rem; }
.page-404 p { margin-bottom: 2rem; font-size: 1.1rem; }

/* =============================================
   COOKIE BANNER
============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform .4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  width: min(1180px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-banner p {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}

.cookie-banner a {
  color: var(--green);
  text-decoration: underline;
}

.cookie-accept {
  padding: .6rem 1.5rem;
  font-size: .85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =============================================
   SCROLL ANIMATIONS
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-accept { width: 100%; }
  .legal-page { padding: 100px 0 60px; }
  .contact-form { padding: 1.5rem; }
}

@media (max-width: 400px) {
  html { font-size: 14px; }
  .container { width: 95%; }
  .hero-blob--1 { width: 300px; height: 300px; }
  .hero-blob--2 { width: 250px; height: 250px; }
  .hero-blob--3 { width: 180px; height: 180px; }
}
