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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #fff;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -.022em;
}

a {
  color: #06c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---- HERO ---- */
.hero {
  padding: 16px 24px 14px;
  text-align: center;
  background: #fbfbfd;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.003em;
  line-height: 1.05;
  color: #1d1d1f;
}

.hero .tagline {
  font-size: 21px;
  font-weight: 400;
  color: #6e6e73;
  margin: 6px auto 0;
  line-height: 1.381;
  letter-spacing: .011em;
}

/* ---- SECTIONS ---- */
.section {
  padding: 40px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.section:last-of-type {
  border-bottom: none;
}

.section-white { background: #fff; }
.section-light { background: #f5f5f7; }

.section h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .004em;
  line-height: 1.125;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.section .section-intro {
  font-size: 17px;
  line-height: 1.47059;
  color: #86868b;
  max-width: 950px;
  margin: 0 auto 4px;
}

.section p {
  font-size: 17px;
  line-height: 1.47059;
  color: #424245;
  max-width: 950px;
  margin: 0 auto;
  text-align: left;
}

.section p.centered {
  text-align: center;
}
}

.section p + p {
  margin-top: 12px;
}

/* ---- ACTIVITY GRID ---- */
.activity-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 950px;
  margin: 12px auto 20px;
}

.activity-col ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 17px;
  line-height: 1.47059;
  color: #1d1d1f;
  text-align: left;
}

.activity-col li {
  margin-bottom: 3px;
}

/* ---- BUTTON ---- */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #06c;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: -.01em;
}

.btn:hover {
  background: #0055b3;
  text-decoration: none;
}

/* ---- SURVEY PROVIDERS ---- */
.survey-providers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 950px;
  margin: 20px auto 0;
}

.survey-provider {
  text-align: center;
}

.survey-provider h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 10px;
}

/* ---- CONTENT PAGES ---- */
.content {
  max-width: 950px;
  margin: 0 auto;
  padding: 28px 24px 40px;
}

.content h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  color: #1d1d1f;
  margin-bottom: 6px;
}

.content .subtitle {
  font-size: 19px;
  color: #6e6e73;
  margin-bottom: 28px;
  line-height: 1.4211;
  letter-spacing: .012em;
}

.content h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .009em;
  color: #1d1d1f;
  margin: 28px 0 6px;
  line-height: 1.1667;
}

.content h3 {
  font-size: 19px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 24px 0 4px;
  line-height: 1.21053;
}

.content p {
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -.022em;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.content ul, .content ol {
  margin: 0 0 12px 20px;
  color: #1d1d1f;
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -.022em;
}

.content li {
  margin-bottom: 4px;
}

.content li strong {
  font-weight: 600;
}

/* ---- COMPANY GRID ---- */
.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #d2d2d7;
  border: 1px solid #d2d2d7;
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0;
}

.company-card {
  background: #fff;
  padding: 20px;
  text-align: left;
  transition: background 0.15s;
}

.company-card:hover {
  background: #f5f5f7;
}

.company-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 4px;
}

.company-card p {
  font-size: 14px;
  line-height: 1.42859;
  color: #6e6e73;
  margin: 0 0 8px;
  letter-spacing: -.016em;
}

.company-card a {
  font-size: 14px;
  color: #06c;
}

.company-card a::after {
  content: ' \203A';
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid #d2d2d7;
  padding: 16px 0;
}

.faq-item:first-of-type {
  border-top: 1px solid #d2d2d7;
}

.faq-item h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.23536;
}

.faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #424245;
}

/* ---- DOMAIN SALE ---- */
.domain-sale {
  padding: 36px 24px;
  text-align: center;
  background: #f5f5f7;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.domain-sale .eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6e6e73;
  margin-bottom: 4px;
}

.domain-sale h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: .009em;
  margin-bottom: 8px;
}

.domain-sale a::after {
  content: ' \203A';
}

/* ---- FOOTER ---- */
footer {
  text-align: center;
  padding: 24px 24px 20px;
  background: #f5f5f7;
  border-top: 1px solid #d2d2d7;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 12px;
}

.footer-nav a {
  font-size: 12px;
  color: #424245;
  text-decoration: none;
  letter-spacing: .005em;
}

.footer-nav a:hover {
  color: #06c;
  text-decoration: none;
}

.footer-copy {
  color: #86868b;
  font-size: 12px;
  letter-spacing: -.01em;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  font-size: 12px;
  color: #6e6e73;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.breadcrumb a {
  color: #06c;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 734px) {
  .hero { padding: 12px 20px 10px; }
  .hero h1 { font-size: 32px; }
  .hero .tagline { font-size: 17px; }
  .section { padding: 28px 20px; }
  .section h2 { font-size: 24px; }
  .content { padding: 20px 20px 32px; }
  .content h1 { font-size: 28px; }
  .content h2 { font-size: 21px; margin: 24px 0 6px; }
  .activity-grid { flex-direction: column; gap: 8px; align-items: center; }
  .survey-providers { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .footer-nav { gap: 6px 16px; }
}
