@charset "UTF-8";
:root {
  --color-cream: #FDF8F3;
  --color-warm-white: #FFFBF7;
  --color-peach: #FFCDB2;
  --color-coral: #E07A5F;
  --color-terracotta: #C94C34;
  --color-sage: #81B29A;
  --color-sage-dark: #5A8F78;
  --color-navy: #3D405B;
  --color-charcoal: #2C2E3E;
  --color-lavender: #E8E4F0;
  --color-butter: #F9E6C8;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, sans-serif;
  --shadow-soft: 0 4px 20px rgba(61, 64, 91, 0.08);
  --shadow-medium: 0 8px 30px rgba(61, 64, 91, 0.12);
  --shadow-lifted: 0 12px 40px rgba(61, 64, 91, 0.15);
  --radius-soft: 16px;
  --radius-round: 24px;
  --radius-pill: 50px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-charcoal);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(253, 248, 243, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 64, 91, 0.05);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-coral), var(--color-terracotta));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-coral);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-links a.nav-about {
  background: var(--color-coral);
  color: white;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
}

.nav-links a.nav-about::after {
  display: none;
}

.nav-links a.nav-about:hover {
  background: var(--color-terracotta);
  color: white;
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  background: linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-cream) 100%);
  overflow: hidden;
}

.hero .bg-shape.one {
  width: 400px;
  height: 400px;
  background: var(--color-peach);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero .bg-shape.two {
  width: 300px;
  height: 300px;
  background: var(--color-lavender);
  bottom: 10%;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero .bg-shape.three {
  width: 200px;
  height: 200px;
  background: var(--color-butter);
  top: 40%;
  right: 10%;
  animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 2rem;
  animation: slideDown 0.8s ease-out;
}

.hero-badge::before {
  content: "🌱";
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero h1 span {
  color: var(--color-coral);
  font-style: italic;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero .tagline {
  font-size: 1.5rem;
  color: var(--color-sage-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.hero .welcome {
  font-size: 1.1rem;
  color: var(--color-charcoal);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.85;
  animation: fadeUp 0.8s ease-out 0.6s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-coral);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-medium), 0 4px 0 var(--color-terracotta);
  transition: all 0.2s;
  animation: fadeUp 0.8s ease-out 0.8s both;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lifted), 0 6px 0 var(--color-terracotta);
}

.hero-cta:active {
  transform: translateY(2px);
  box-shadow: var(--shadow-soft), 0 2px 0 var(--color-terracotta);
}

section {
  padding: 6rem 2rem;
  position: relative;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-coral);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

.what-is {
  background: var(--color-warm-white);
}

.what-is-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.what-is-text p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}

.what-is-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  float: left;
  line-height: 1;
  margin-right: 0.75rem;
  color: var(--color-coral);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-navy);
  box-shadow: var(--shadow-soft);
}

.what-is-visual {
  position: relative;
}

.visual-card {
  background: white;
  border-radius: var(--radius-round);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-peach), var(--color-sage));
}

.visual-card-icon {
  width: 80px;
  height: 80px;
  background: var(--color-butter);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.visual-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.visual-card p {
  color: var(--color-charcoal);
  opacity: 0.8;
}

.getting-started {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-lavender) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: white;
  border-radius: var(--radius-round);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lifted);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: var(--color-peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-terracotta);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.step-card:nth-child(1) .step-icon {
  background: var(--color-butter);
}

.step-card:nth-child(2) .step-icon {
  background: var(--color-lavender);
}

.step-card:nth-child(3) .step-icon {
  background: linear-gradient(135deg, var(--color-peach), var(--color-coral));
}

.step-card:nth-child(4) .step-icon {
  background: var(--color-sage);
  color: white;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  opacity: 0.85;
}

.workflow {
  background: var(--color-navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.workflow::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 122, 95, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.workflow .section-label {
  color: var(--color-peach);
}

.workflow .section-title {
  color: white;
}

.workflow-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.15rem;
  opacity: 0.9;
}

.workflow-steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.workflow-step {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-round);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  position: relative;
}

.workflow-step::after {
  content: "→";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-peach);
  opacity: 0.6;
}

.workflow-step:last-child::after {
  display: none;
}

.workflow-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.workflow-step:nth-child(1) .workflow-step-icon {
  background: linear-gradient(135deg, var(--color-butter), var(--color-peach));
}

.workflow-step:nth-child(2) .workflow-step-icon {
  background: linear-gradient(135deg, var(--color-lavender), var(--color-peach));
}

.workflow-step:nth-child(3) .workflow-step-icon {
  background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
}

.workflow-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.workflow-step p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

.tips {
  background: var(--color-warm-white);
}

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

.tip-card {
  background: white;
  border-radius: var(--radius-soft);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid;
  transition: transform 0.2s;
}

.tip-card:hover {
  transform: translateX(4px);
}

.tip-card:nth-child(1) {
  border-color: var(--color-coral);
}

.tip-card:nth-child(2) {
  border-color: var(--color-sage);
}

.tip-card:nth-child(3) {
  border-color: var(--color-terracotta);
}

.tip-card:nth-child(4) {
  border-color: #6B7FD7;
}

.tip-card:nth-child(5) {
  border-color: var(--color-butter);
}

.tip-card:nth-child(6) {
  border-color: var(--color-peach);
}

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

.tip-emoji {
  font-size: 1.5rem;
}

.tip-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-navy);
}

.tip-card p {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  opacity: 0.85;
}

.about-snippet {
  padding: 100px 2rem;
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
}

.about-snippet-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: center;
}

.about-snippet .section-label {
  display: inline-block;
  background: rgba(255, 205, 178, 0.2);
  color: var(--color-peach);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-snippet .section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: white;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.about-snippet-text p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.mini-quote {
  border-left: 3px solid var(--color-coral);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 var(--radius-soft) var(--radius-soft) 0;
}

.mini-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--color-peach);
  font-weight: 600;
}

.about-cta {
  display: inline-block;
  background: var(--color-coral);
  color: white;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.about-cta:hover {
  background: var(--color-terracotta);
  transform: translateY(-2px);
}

.hardhat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-round);
  padding: 3rem 2rem;
  text-align: center;
}

.hardhat-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.hardhat-card p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.stay-updated {
  background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-butter) 50%, var(--color-lavender) 100%);
  text-align: center;
}

.stay-updated .container {
  max-width: 700px;
}

.stay-updated .section-title {
  margin-bottom: 1.5rem;
}

.stay-updated p {
  font-size: 1.15rem;
  color: var(--color-charcoal);
  margin-bottom: 2rem;
}

.update-card {
  background: white;
  border-radius: var(--radius-round);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
}

.update-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.update-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.update-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  color: var(--color-navy);
}

footer {
  background: var(--color-charcoal);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  opacity: 0.7;
  font-size: 0.95rem;
}

footer .heart {
  color: var(--color-coral);
}

.page-hero {
  padding: 120px 2rem 60px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-butter) 100%);
  border-bottom: 1px solid var(--color-peach);
}

.page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1rem;
  color: var(--color-navy);
  max-width: 560px;
}

.page-content-area {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 2rem 80px;
}

.page-content-area h1, .page-content-area h2 {
  font-family: var(--font-display);
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.page-content-area p {
  color: var(--color-navy);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 2rem 80px;
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-peach);
}

.about-section p {
  color: var(--color-navy);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.hardhat-quote {
  background: linear-gradient(135deg, var(--color-butter) 0%, var(--color-peach) 100%);
  border-left: 4px solid var(--color-terracotta);
  border-radius: 0 12px 12px 0;
  padding: 1.75rem 2rem;
  margin: 1.5rem 0;
}

.hardhat-quote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.hardhat-quote cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--color-terracotta);
  font-weight: 500;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.feature-list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-peach);
  font-size: 0.95rem;
}

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

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-coral);
  font-weight: 600;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.link-card {
  display: block;
  background-color: var(--color-warm-white);
  border: 1px solid var(--color-peach);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.link-card:hover {
  border-color: var(--color-coral);
  box-shadow: 0 4px 16px rgba(224, 122, 95, 0.15);
  transform: translateY(-2px);
  text-decoration: none;
}

.link-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.link-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.callout {
  background-color: var(--color-lavender);
  border-left: 4px solid var(--color-navy);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.callout p {
  font-size: 0.95rem;
  color: var(--color-navy);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .what-is-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .what-is-visual {
    order: -1;
  }
  .workflow-step::after {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .about-snippet-inner {
    grid-template-columns: 1fr;
  }
  .hardhat-card {
    display: none;
  }
}
@media (max-width: 600px) {
  section {
    padding: 4rem 1.5rem;
  }
  .hero {
    padding: 6rem 1.5rem 3rem;
  }
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}